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 FloatArrayModifier and TypeClassDescriptionclassA basic float array with no built-in synchronization or thread-safety measures.Methods in civitas.celestis.util.array that return FloatArrayModifier and TypeMethodDescriptiondefault FloatArrayFloatArray.append(FloatArray a) Append the provided arrayato the end of this array, then returns the resulting array.default FloatArrayFloatArray.filter(FloatPredicate f) Tests each element of this array using the provided predicatef, collects all elements the predicate returnstrueto, then returns a new array containing only the filtered elements.static FloatArrayCreates a new type-safe array from the provided stream of values.FloatArray.map(FloatUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.FloatFastArray.map(FloatUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.AtomicArray.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new float array containing the return values of the functionf.FastArray.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new float array containing the return values of the functionf.SafeArray.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new float array containing the return values of the functionf.SyncArray.mapToFloat(ToFloatFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new float array containing the return values of the functionf.FloatArray.merge(FloatArray a, FloatBinaryOperator f) Between this array and the provided arraya, this applies the merger functionfto each corresponding pair of elements, then returns a new array containing the return values of the merger functionf.FloatFastArray.merge(FloatArray a, FloatBinaryOperator f) Between this array and the provided arraya, this applies the merger functionfto each corresponding pair of elements, then returns a new array containing the return values of the merger functionf.static FloatArrayFloatArray.of(float... values) Creates a new type-safe array from the provided array of values.default FloatArrayFloatArray.prepend(FloatArray a) Prepends the provided arrayato the front of this array, then returns the resulting array.static FloatArrayFloatArray.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 FloatArrayModifier and TypeMethodDescriptiondefault FloatArrayFloatArray.append(FloatArray a) Append the provided arrayato the end of this array, then returns the resulting array.FloatArray.merge(FloatArray a, FloatBinaryOperator f) Between this array and the provided arraya, this applies the merger functionfto each corresponding pair of elements, then returns a new array containing the return values of the merger functionf.FloatFastArray.merge(FloatArray a, FloatBinaryOperator f) Between this array and the provided arraya, this applies the merger functionfto each corresponding pair of elements, then returns a new array containing the return values of the merger functionf.default FloatArrayFloatArray.prepend(FloatArray a) Prepends the provided arrayato the front of this array, then returns the resulting array.voidFloatArray.setRange(int s, int e, FloatArray a) Sets a sub-array of this array to the values of the provided sub-arraya.voidFloatFastArray.setRange(int s, int e, FloatArray a) Sets a sub-array of this array to the values of the provided sub-arraya.Constructors in civitas.celestis.util.array with parameters of type FloatArray -
Uses of FloatArray in civitas.celestis.util.tuple
Methods in civitas.celestis.util.tuple that return FloatArrayModifier and TypeMethodDescriptiondefault FloatArrayFloatTuple.floatArray()Returns a float array containing the components of this tuple in their proper order.