UInt Array
Constructors
Functions
Properties
Extensions
Returns an array of type IntArray, which is a view of this array where each element is a signed reinterpretation of the corresponding element of this array.
Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.
Populates and returns the destination mutable map with key-value pairs for each element of the given array, where key is the element itself and value is provided by the valueSelector function applied to that key.
Searches the array or the range of the array for the provided element using the binary search algorithm. The array is expected to be sorted, otherwise the result is undefined.
Returns 1st element from the array.
Returns 2nd element from the array.
Returns 3rd element from the array.
Returns 4th element from the array.
Returns 5th element from the array.
Returns true
if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.
Returns a hash code based on the contents of this array as if it is List.
Returns a string representation of the contents of the specified array as if it is List.
Returns new array which is a copy of the original array.
Returns new array which is a copy of the original array, resized to the given newSize. The copy is either truncated or padded at the end with zero values if necessary.
Returns a new array which is a copy of the specified range of the original array.
Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this array.
Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this array.
Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this array.
Appends all elements matching the given predicate to the given destination.
Appends all elements not matching the given predicate to the given destination.
Appends all elements yielded from results of transform function being invoked on each element and its index in the original array, to the given destination.
Groups elements of the original array by the key returned by the given keySelector function applied to each element and returns a map where each group key is associated with a list of corresponding elements.
Groups values returned by the valueTransform function applied to each element of the original array by the key returned by the given keySelector function applied to the element and returns a map where each group key is associated with a list of corresponding values.
Groups elements of the original array by the key returned by the given keySelector function applied to each element and puts to the destination map each group key associated with a list of corresponding elements.
Groups values returned by the valueTransform function applied to each element of the original array by the key returned by the given keySelector function applied to the element and puts to the destination map each group key associated with a list of corresponding values.
Returns the range of valid indices for the array.
Returns the last valid index for the array.
Returns last index of element, or -1 if the array does not contain element.
Applies the given transform function to each element and its index in the original array and appends the results to the given destination.
Returns the first element yielding the largest value of the given function or null
if there are no elements.
Returns the largest value among all values produced by selector function applied to each element in the array.
Returns the largest value among all values produced by selector function applied to each element in the array or null
if there are no elements.
Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array or null
if there are no elements.
Returns the largest element or null
if there are no elements.
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
Returns the first element yielding the smallest value of the given function or null
if there are no elements.
Returns the smallest value among all values produced by selector function applied to each element in the array.
Returns the smallest value among all values produced by selector function applied to each element in the array or null
if there are no elements.
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array or null
if there are no elements.
Returns the smallest element or null
if there are no elements.
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
Returns an array containing all elements of the original array and then the given element.
Returns an array containing all elements of the original array and then all elements of the given elements collection.
Returns an array containing all elements of the original array and then all elements of the given elements array.
Returns a random element from this array.
Returns a random element from this array using the specified source of randomness.
Returns a random element from this array, or null
if this array is empty.
Returns a random element from this array using the specified source of randomness, or null
if this array is empty.
Accumulates value starting with the last element and applying operation from right to left to each element with its index in the original array and current accumulator value.
Returns an array with elements of this array in reversed order.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this array.
Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with the first element of this array.
Returns the single element, or throws an exception if the array is empty or has more than one element.
Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.
Returns single element, or null
if the array is empty or has more than one element.
Returns the single element matching the given predicate, or null
if element was not found or more than one element was found.
Returns an array containing elements of this array at specified indices.
Returns an array containing elements at indices in the specified indices range.
Sorts elements in the array in-place descending according to their natural sort order.
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
Returns an array with all elements of this array sorted according to their natural sort order.
Returns an array with all elements of this array sorted descending according to their natural sort order.
Returns a list of all elements sorted descending according to their natural sort order.
Returns the sum of all elements in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns the sum of all values produced by selector function applied to each element in the array.
Returns an array of type IntArray, which is a copy of this array where each element is a signed reinterpretation of the corresponding element of this array.
Returns a typed object array containing all of the elements of this primitive array.
Returns a lazy Iterable that wraps each element of the original array into an IndexedValue containing the index of that element and the element itself.
Returns a list of pairs built from the elements of this
array and the other array with the same index. The returned list has length of the shortest collection.
Returns a list of values built from the elements of this
array and the other array with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest collection.
Returns a list of pairs built from the elements of this
collection and other array with the same index. The returned list has length of the shortest collection.
Returns a list of values built from the elements of this
array and the other collection with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest collection.