Uses of Interface
civitas.celestis.util.array.DoubleArray
Packages that use DoubleArray
-
Uses of DoubleArray in civitas.celestis.util.array
Classes in civitas.celestis.util.array that implement DoubleArrayModifier and TypeClassDescriptionclassA basic double array with no built-in synchronization or thread-safety measures.Methods in civitas.celestis.util.array that return DoubleArrayModifier and TypeMethodDescriptiondefault DoubleArrayDoubleArray.append(DoubleArray a) Append the provided arrayato the end of this array, then returns the resulting array.default DoubleArrayDoubleArray.filter(DoublePredicate 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 DoubleArrayDoubleArray.from(DoubleStream s) Creates a new type-safe array from the provided stream of values.DoubleArray.map(DoubleUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.DoubleFastArray.map(DoubleUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.AtomicArray.mapToDouble(ToDoubleFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new double array containing the return values of the functionf.FastArray.mapToDouble(ToDoubleFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new double array containing the return values of the functionf.SafeArray.mapToDouble(ToDoubleFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new double array containing the return values of the functionf.SyncArray.mapToDouble(ToDoubleFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new double array containing the return values of the functionf.DoubleArray.merge(DoubleArray a, DoubleBinaryOperator 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.DoubleFastArray.merge(DoubleArray a, DoubleBinaryOperator 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 DoubleArrayDoubleArray.of(double... values) Creates a new type-safe array from the provided array of values.default DoubleArrayDoubleArray.prepend(DoubleArray a) Prepends the provided arrayato the front of this array, then returns the resulting array.static DoubleArrayDoubleArray.referenceOf(double... values) Creates a new type-safe reference array from the provided array of values.DoubleArray.resize(int size) Returns a resized array whose elements are mapped from that of this array's elements.DoubleFastArray.resize(int size) Returns a resized array whose elements are mapped from that of this array's elements.DoubleArray.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).DoubleFastArray.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 DoubleArrayModifier and TypeMethodDescriptiondefault DoubleArrayDoubleArray.append(DoubleArray a) Append the provided arrayato the end of this array, then returns the resulting array.DoubleArray.merge(DoubleArray a, DoubleBinaryOperator 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.DoubleFastArray.merge(DoubleArray a, DoubleBinaryOperator 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 DoubleArrayDoubleArray.prepend(DoubleArray a) Prepends the provided arrayato the front of this array, then returns the resulting array.voidDoubleArray.setRange(int s, int e, DoubleArray a) Sets a sub-array of this array to the values of the provided sub-arraya.voidDoubleFastArray.setRange(int s, int e, DoubleArray 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 DoubleArray -
Uses of DoubleArray in civitas.celestis.util.tuple
Methods in civitas.celestis.util.tuple that return DoubleArrayModifier and TypeMethodDescriptiondefault DoubleArrayDoubleTuple.doubleArray()Returns a double array containing the components of this tuple in their proper order.