public interface FloatArray extends BigArray
| Modifier and Type | Method and Description |
|---|---|
void |
fill(long fromIndex,
long toIndex,
float value)
Fill slots between
fromIndex inclusive to toIndex exclusive with value. |
float |
get(long index)
Get an element given its index.
|
float |
increment(long index,
float inc)
Increment value at the given index by
inc and return the value. |
float |
set(long index,
float value)
Set a value at the given index and return the previous value.
|
closefloat get(long index)
float set(long index,
float value)
float increment(long index,
float inc)
inc and return the value.void fill(long fromIndex,
long toIndex,
float value)
fromIndex inclusive to toIndex exclusive with value.