Uses of Interface
civitas.celestis.util.array.FloatArray

Packages that use FloatArray
  • Uses of FloatArray in civitas.celestis.util.array

    Classes in civitas.celestis.util.array that implement FloatArray
    Modifier and Type
    Class
    Description
    class 
    A basic float array with no built-in synchronization or thread-safety measures.
    Modifier and Type
    Method
    Description
    default FloatArray
    FloatArray.append(FloatArray a)
    Append the provided array a to the end of this array, then returns the resulting array.
    default FloatArray
    FloatArray.filter(FloatPredicate f)
    Tests each element of this array using the provided predicate f, collects all elements the predicate returns true to, then returns a new array containing only the filtered elements.
    static FloatArray
    FloatArray.from(Stream<Float> s)
    Creates a new type-safe array from the provided stream of values.
    FloatArray.map(FloatUnaryOperator f)
    Applies the provided mapper function f to each element of this array, then returns a new array containing the return values of the function f.
    FloatFastArray.map(FloatUnaryOperator f)
    Applies the provided mapper function f to each element of this array, then returns a new array containing the return values of the function f.
    AtomicArray.mapToFloat(ToFloatFunction<? super E> f)
    Applies the provided mapper function f to each element of this array, then returns a new float array containing the return values of the function f.
    FastArray.mapToFloat(ToFloatFunction<? super E> f)
    Applies the provided mapper function f to each element of this array, then returns a new float array containing the return values of the function f.
    SafeArray.mapToFloat(ToFloatFunction<? super E> f)
    Applies the provided mapper function f to each element of this array, then returns a new float array containing the return values of the function f.
    SyncArray.mapToFloat(ToFloatFunction<? super E> f)
    Applies the provided mapper function f to each element of this array, then returns a new float array containing the return values of the function f.
    Between this array and the provided array a, this applies the merger function f to each corresponding pair of elements, then returns a new array containing the return values of the merger function f.
    FloatFastArray.merge(FloatArray a, FloatBinaryOperator f)
    Between this array and the provided array a, this applies the merger function f to each corresponding pair of elements, then returns a new array containing the return values of the merger function f.
    static FloatArray
    FloatArray.of(float... values)
    Creates a new type-safe array from the provided array of values.
    default FloatArray
    FloatArray.prepend(FloatArray a)
    Prepends the provided array a to the front of this array, then returns the resulting array.
    static FloatArray
    FloatArray.referenceOf(float... values)
    Creates a new type-safe reference array from the provided array of values.
    FloatArray.resize(int size)
    Returns a resized array whose elements are mapped from that of this array's elements.
    FloatFastArray.resize(int size)
    Returns a resized array whose elements are mapped from that of this array's elements.
    FloatArray.subArray(int s, int e)
    Returns a sub-array of this array which represents a portion of this array between the range of [s, e).
    FloatFastArray.subArray(int s, int e)
    Returns a sub-array of this array which represents a portion of this array between the range of [s, e).
    Methods in civitas.celestis.util.array with parameters of type FloatArray
    Modifier and Type
    Method
    Description
    default FloatArray
    FloatArray.append(FloatArray a)
    Append the provided array a to the end of this array, then returns the resulting array.
    Between this array and the provided array a, this applies the merger function f to each corresponding pair of elements, then returns a new array containing the return values of the merger function f.
    FloatFastArray.merge(FloatArray a, FloatBinaryOperator f)
    Between this array and the provided array a, this applies the merger function f to each corresponding pair of elements, then returns a new array containing the return values of the merger function f.
    default FloatArray
    FloatArray.prepend(FloatArray a)
    Prepends the provided array a to the front of this array, then returns the resulting array.
    void
    FloatArray.setRange(int s, int e, FloatArray a)
    Sets a sub-array of this array to the values of the provided sub-array a.
    void
    FloatFastArray.setRange(int s, int e, FloatArray a)
    Sets a sub-array of this array to the values of the provided sub-array a.
    Constructors in civitas.celestis.util.array with parameters of type FloatArray
    Modifier
    Constructor
    Description
     
    Creates a new fast float array.
  • Uses of FloatArray in civitas.celestis.util.tuple

    Modifier and Type
    Method
    Description
    default FloatArray
    FloatTuple.floatArray()
    Returns a float array containing the components of this tuple in their proper order.