Uses of Interface
civitas.celestis.util.array.LongArray
Packages that use LongArray
-
Uses of LongArray in civitas.celestis.util.array
Classes in civitas.celestis.util.array that implement LongArrayModifier and TypeClassDescriptionclassA basic long array with no built-in synchronization or thread-safety measures.Methods in civitas.celestis.util.array that return LongArrayModifier and TypeMethodDescriptiondefault LongArrayAppend the provided arrayato the end of this array, then returns the resulting array.default LongArrayLongArray.filter(LongPredicate 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 LongArrayLongArray.from(LongStream s) Creates a new type-safe array from the provided stream of values.LongArray.map(LongUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.LongFastArray.map(LongUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.AtomicArray.mapToLong(ToLongFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new long array containing the return values of the functionf.FastArray.mapToLong(ToLongFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new long array containing the return values of the functionf.SafeArray.mapToLong(ToLongFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new long array containing the return values of the functionf.SyncArray.mapToLong(ToLongFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new long array containing the return values of the functionf.LongArray.merge(LongArray a, LongBinaryOperator 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.LongFastArray.merge(LongArray a, LongBinaryOperator 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 LongArrayLongArray.of(long... values) Creates a new type-safe array from the provided array of values.default LongArrayPrepends the provided arrayato the front of this array, then returns the resulting array.static LongArrayLongArray.referenceOf(long... values) Creates a new type-safe reference array from the provided array of values.LongArray.resize(int size) Returns a resized array whose elements are mapped from that of this array's elements.LongFastArray.resize(int size) Returns a resized array whose elements are mapped from that of this array's elements.LongArray.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).LongFastArray.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 LongArrayModifier and TypeMethodDescriptiondefault LongArrayAppend the provided arrayato the end of this array, then returns the resulting array.LongArray.merge(LongArray a, LongBinaryOperator 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.LongFastArray.merge(LongArray a, LongBinaryOperator 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 LongArrayPrepends the provided arrayato the front of this array, then returns the resulting array.voidSets a sub-array of this array to the values of the provided sub-arraya.voidSets a sub-array of this array to the values of the provided sub-arraya.Constructors in civitas.celestis.util.array with parameters of type LongArray -
Uses of LongArray in civitas.celestis.util.tuple
Methods in civitas.celestis.util.tuple that return LongArray