Package io.deephaven.qst.array
Class FloatArray
- All Implemented Interfaces:
Array<Float>
,PrimitiveArray<Float>
A
FloatType
array.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.qst.array.PrimitiveArray
PrimitiveArray.Visitor<R>
-
Method Summary
Modifier and TypeMethodDescriptionstatic FloatArray.Builder
builder
(int initialSize) final FloatType
static FloatArray
empty()
final boolean
final int
hashCode()
boolean
isNull
(int index) static FloatArray
of
(float... values) static FloatArray
static FloatArray
static FloatArray
of
(Collection<Float> values) static FloatArray
ofUnsafe
(float... values) final int
size()
value
(int index) final float[]
values()
The raw floats.final <R> R
walk
(PrimitiveArray.Visitor<R> visitor) Methods inherited from class io.deephaven.qst.array.PrimitiveArrayBase
walk
-
Method Details
-
empty
-
of
-
of
-
of
-
of
-
ofUnsafe
-
builder
-
values
public final float[] values()The raw floats. Must not be modified.- Returns:
- the floats, do not modify
-
value
- Returns:
- the boxed value at
index
-
isNull
public boolean isNull(int index) - Returns:
- whether the value at
index
isnull
-
size
public final int size() -
componentType
-
walk
-
equals
-
hashCode
public final int hashCode()
-