Uses of Interface
civitas.celestis.util.array.IntArray
Packages that use IntArray
-
Uses of IntArray in civitas.celestis.util.array
Classes in civitas.celestis.util.array that implement IntArrayModifier and TypeClassDescriptionclassA basic int array with no built-in synchronization or thread-safety measures.Methods in civitas.celestis.util.array that return IntArrayModifier and TypeMethodDescriptiondefault IntArrayAppend the provided arrayato the end of this array, then returns the resulting array.default IntArrayIntArray.filter(IntPredicate 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 IntArrayCreates a new type-safe array from the provided stream of values.IntArray.map(IntUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.IntFastArray.map(IntUnaryOperator f) Applies the provided mapper functionfto each element of this array, then returns a new array containing the return values of the functionf.AtomicArray.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new integer array containing the return values of the functionf.FastArray.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new integer array containing the return values of the functionf.SafeArray.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new integer array containing the return values of the functionf.SyncArray.mapToInt(ToIntFunction<? super E> f) Applies the provided mapper functionfto each element of this array, then returns a new integer array containing the return values of the functionf.IntArray.merge(IntArray a, IntBinaryOperator 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.IntFastArray.merge(IntArray a, IntBinaryOperator 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 IntArrayIntArray.of(int... values) Creates a new type-safe array from the provided array of values.default IntArrayPrepends the provided arrayato the front of this array, then returns the resulting array.static IntArrayIntArray.referenceOf(int... values) Creates a new type-safe reference array from the provided array of values.IntArray.resize(int size) Returns a resized array whose elements are mapped from that of this array's elements.IntFastArray.resize(int size) Returns a resized array whose elements are mapped from that of this array's elements.IntArray.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).IntFastArray.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 IntArrayModifier and TypeMethodDescriptiondefault IntArrayAppend the provided arrayato the end of this array, then returns the resulting array.IntArray.merge(IntArray a, IntBinaryOperator 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.IntFastArray.merge(IntArray a, IntBinaryOperator 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 IntArrayPrepends 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 IntArray -
Uses of IntArray in civitas.celestis.util.tuple
Methods in civitas.celestis.util.tuple that return IntArray