- Index
- »
- fan.util
- »
- FloatArray
FloatArray
@Js
class FloatArray : Obj
Optimized fixed size array of 4 or 8 byte unboxed floats. The array values default to zero.
Set the float at the given index
Get number of floats in the array
Create a 32-bit float array
Get the float at the given index
Create a 64-bit float array
Sort the floats in this array
Fill this array with the given float value
Copy the floats from that array into this array and return this
This copyFrom(FloatArray that, Range? thatRange, Int thisOffset)
Copy the floats from that array into this array and return this. The thatRange parameter may be used to specify a specific range of floats from the that parameter (negative indices are allowed) to copy. If thatRange is null then the entire range of that is copied. Or thisOffset specifies the starting index of this index to copy the first float. Raise an exception if this array is not properly sized or is not of the same signed/byte count as the that array.
This fill(Float val, Range? range)
Fill this array with the given float value. If range is null then the entire array is filled, otherwise just the specified range. Return this.
@Operator
Float get(Int index)
Get the float at the given index. Negative indices are not supported.
static FloatArray makeF4(Int size)
Create a 32-bit float array.
static FloatArray makeF8(Int size)
Create a 64-bit float array.
@Operator
Void set(Int index, Float val)
Set the float at the given index. Negative indices are not supported.
Int size()
Get number of floats in the array
This sort(Range? range)
Sort the floats in this array. If range is null then the entire array is sorted, otherwise just the specified range. Return this.