UIntArray

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
@ExperimentalUnsignedTypes inline class UIntArray : 
    Collection<UInt>

Constructors

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

<init>

Creates a new array of the specified size, with all elements initialized to zero.

UIntArray(size: Int)

Properties

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

size

Returns the number of elements in the array.

val size: Int

Functions

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

contains

fun contains(element: UInt): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

containsAll

fun containsAll(elements: Collection<UInt>): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

get

Returns the array element at the given index. This method can be called using the index operator.

operator fun get(index: Int): UInt
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

isEmpty

fun isEmpty(): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

iterator

Creates an iterator over the elements of the array.

operator fun iterator(): Iterator<UInt>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

set

Sets the element at the given index to the given value. This method can be called using the index operator.

operator fun set(index: Int, value: UInt)

Extension Properties

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

indices

Returns the range of valid indices for the array.

val UIntArray.indices: IntRange
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

lastIndex

Returns the last valid index for the array.

val UIntArray.lastIndex: Int

Extension Functions

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

all

Returns true if all elements match the given predicate.

fun UIntArray.all(predicate: (UInt) -> Boolean): Boolean
fun <T> Iterable<T>.all(predicate: (T) -> Boolean): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

any

Returns true if array has at least one element.

fun UIntArray.any(): Boolean

Returns true if at least one element matches the given predicate.

fun UIntArray.any(predicate: (UInt) -> Boolean): Boolean
fun <T> Iterable<T>.any(predicate: (T) -> Boolean): Boolean
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

asIntArray

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.

fun UIntArray.asIntArray(): IntArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

asIterable

Returns this collection as an Iterable.

fun <T> Iterable<T>.asIterable(): Iterable<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

asSequence

Creates a Sequence instance that wraps the original collection returning its elements when being iterated.

fun <T> Iterable<T>.asSequence(): Sequence<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

associate

Returns a Map containing key-value pairs provided by transform function applied to elements of the given collection.

fun <T, K, V> Iterable<T>.associate(
    transform: (T) -> Pair<K, V>
): Map<K, V>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

associateBy

Returns a Map containing the elements from the given collection indexed by the key returned from keySelector function applied to each element.

fun <T, K> Iterable<T>.associateBy(
    keySelector: (T) -> K
): Map<K, T>

Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given collection.

fun <T, K, V> Iterable<T>.associateBy(
    keySelector: (T) -> K, 
    valueTransform: (T) -> V
): Map<K, V>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

associateByTo

Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function applied to each element of the given collection and value is the element itself.

fun <T, K, M : MutableMap<in K, in T>> Iterable<T>.associateByTo(
    destination: M, 
    keySelector: (T) -> K
): M

Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function and and value is provided by the valueTransform function applied to elements of the given collection.

fun <T, K, V, M : MutableMap<in K, in V>> Iterable<T>.associateByTo(
    destination: M, 
    keySelector: (T) -> K, 
    valueTransform: (T) -> V
): M
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

associateTo

Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given collection.

fun <T, K, V, M : MutableMap<in K, in V>> Iterable<T>.associateTo(
    destination: M, 
    transform: (T) -> Pair<K, V>
): M
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

associateWith

Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.

fun <V> UIntArray.associateWith(
    valueSelector: (UInt) -> V
): Map<UInt, V>

Returns a Map where keys are elements from the given collection and values are produced by the valueSelector function applied to each element.

fun <K, V> Iterable<K>.associateWith(
    valueSelector: (K) -> V
): Map<K, V>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

associateWithTo

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.

fun <V, M : MutableMap<in UInt, in V>> UIntArray.associateWithTo(
    destination: M, 
    valueSelector: (UInt) -> V
): M

Populates and returns the destination mutable map with key-value pairs for each element of the given collection, where key is the element itself and value is provided by the valueSelector function applied to that key.

fun <K, V, M : MutableMap<in K, in V>> Iterable<K>.associateWithTo(
    destination: M, 
    valueSelector: (K) -> V
): M
Platform and version requirements: JVM (1.3)

binarySearch

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.

fun UIntArray.binarySearch(
    element: UInt, 
    fromIndex: Int = 0, 
    toIndex: Int = size
): Int
Platform and version requirements: JVM (1.2), JS (1.2), Native (1.2)

chunked

Splits this collection into a list of lists each not exceeding the given size.

fun <T> Iterable<T>.chunked(size: Int): List<List<T>>

Splits this collection into several lists each not exceeding the given size and applies the given transform function to an each.

fun <T, R> Iterable<T>.chunked(
    size: Int, 
    transform: (List<T>) -> R
): List<R>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

component1

Returns 1st element from the array.

operator fun UIntArray.component1(): UInt
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

component2

Returns 2nd element from the array.

operator fun UIntArray.component2(): UInt
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

component3

Returns 3rd element from the array.

operator fun UIntArray.component3(): UInt
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

component4

Returns 4th element from the array.

operator fun UIntArray.component4(): UInt
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

component5

Returns 5th element from the array.

operator fun UIntArray.component5(): UInt
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

contains

Returns true if element is found in the collection.

operator fun <T> Iterable<T>.contains(element: T): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

containsAll

Checks if all elements in the specified collection are contained in this collection.

fun <T> Collection<T>.containsAll(
    elements: Collection<T>
): Boolean
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

contentEquals

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.

infix fun UIntArray.contentEquals(other: UIntArray): Boolean
infix fun UIntArray?.contentEquals(
    other: UIntArray?
): Boolean
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

contentHashCode

Returns a hash code based on the contents of this array as if it is List.

fun UIntArray.contentHashCode(): Int
fun UIntArray?.contentHashCode(): Int
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

contentToString

Returns a string representation of the contents of the specified array as if it is List.

fun UIntArray.contentToString(): String
fun UIntArray?.contentToString(): String
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

copyInto

Copies this array or its subrange into the destination array and returns that array.

fun UIntArray.copyInto(
    destination: UIntArray, 
    destinationOffset: Int = 0, 
    startIndex: Int = 0, 
    endIndex: Int = size
): UIntArray
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

copyOf

Returns new array which is a copy of the original array.

fun UIntArray.copyOf(): UIntArray

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.

fun UIntArray.copyOf(newSize: Int): UIntArray
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

copyOfRange

Returns a new array which is a copy of the specified range of the original array.

fun UIntArray.copyOfRange(
    fromIndex: Int, 
    toIndex: Int
): UIntArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

count

Returns the number of elements matching the given predicate.

fun UIntArray.count(predicate: (UInt) -> Boolean): Int
fun <T> Iterable<T>.count(predicate: (T) -> Boolean): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

distinct

Returns a list containing only distinct elements from the given collection.

fun <T> Iterable<T>.distinct(): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

distinctBy

Returns a list containing only elements from the given collection having distinct keys returned by the given selector function.

fun <T, K> Iterable<T>.distinctBy(
    selector: (T) -> K
): List<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

drop

Returns a list containing all elements except first n elements.

fun UIntArray.drop(n: Int): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

dropLast

Returns a list containing all elements except last n elements.

fun UIntArray.dropLast(n: Int): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

dropLastWhile

Returns a list containing all elements except last elements that satisfy the given predicate.

fun UIntArray.dropLastWhile(
    predicate: (UInt) -> Boolean
): List<UInt>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

dropWhile

Returns a list containing all elements except first elements that satisfy the given predicate.

fun UIntArray.dropWhile(
    predicate: (UInt) -> Boolean
): List<UInt>
fun <T> Iterable<T>.dropWhile(
    predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

elementAtOrElse

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.

fun UIntArray.elementAtOrElse(
    index: Int, 
    defaultValue: (Int) -> UInt
): UInt

Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this collection.

fun <T> Iterable<T>.elementAtOrElse(
    index: Int, 
    defaultValue: (Int) -> T
): T
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

elementAtOrNull

Returns an element at the given index or null if the index is out of bounds of this array.

fun UIntArray.elementAtOrNull(index: Int): UInt?
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

fill

Fills this array or its subrange with the specified element value.

fun UIntArray.fill(
    element: UInt, 
    fromIndex: Int = 0, 
    toIndex: Int = size)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filter

Returns a list containing only elements matching the given predicate.

fun UIntArray.filter(
    predicate: (UInt) -> Boolean
): List<UInt>
fun <T> Iterable<T>.filter(
    predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterIndexed

Returns a list containing only elements matching the given predicate.

fun UIntArray.filterIndexed(
    predicate: (index: Int, UInt) -> Boolean
): List<UInt>
fun <T> Iterable<T>.filterIndexed(
    predicate: (index: Int, T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterIndexedTo

Appends all elements matching the given predicate to the given destination.

fun <C : MutableCollection<in UInt>> UIntArray.filterIndexedTo(
    destination: C, 
    predicate: (index: Int, UInt) -> Boolean
): C
fun <T, C : MutableCollection<in T>> Iterable<T>.filterIndexedTo(
    destination: C, 
    predicate: (index: Int, T) -> Boolean
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterIsInstance

Returns a list containing all elements that are instances of specified type parameter R.

fun <R> Iterable<*>.filterIsInstance(): List<R>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterIsInstanceTo

Appends all elements that are instances of specified type parameter R to the given destination.

fun <R, C : MutableCollection<in R>> Iterable<*>.filterIsInstanceTo(
    destination: C
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterNot

Returns a list containing all elements not matching the given predicate.

fun UIntArray.filterNot(
    predicate: (UInt) -> Boolean
): List<UInt>
fun <T> Iterable<T>.filterNot(
    predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterNotNull

Returns a list containing all elements that are not null.

fun <T : Any> Iterable<T?>.filterNotNull(): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterNotNullTo

Appends all elements that are not null to the given destination.

fun <C : MutableCollection<in T>, T : Any> Iterable<T?>.filterNotNullTo(
    destination: C
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterNotTo

Appends all elements not matching the given predicate to the given destination.

fun <C : MutableCollection<in UInt>> UIntArray.filterNotTo(
    destination: C, 
    predicate: (UInt) -> Boolean
): C
fun <T, C : MutableCollection<in T>> Iterable<T>.filterNotTo(
    destination: C, 
    predicate: (T) -> Boolean
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

filterTo

Appends all elements matching the given predicate to the given destination.

fun <C : MutableCollection<in UInt>> UIntArray.filterTo(
    destination: C, 
    predicate: (UInt) -> Boolean
): C
fun <T, C : MutableCollection<in T>> Iterable<T>.filterTo(
    destination: C, 
    predicate: (T) -> Boolean
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

find

Returns the first element matching the given predicate, or null if no such element was found.

fun UIntArray.find(predicate: (UInt) -> Boolean): UInt?
fun <T> Iterable<T>.find(predicate: (T) -> Boolean): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

findLast

Returns the last element matching the given predicate, or null if no such element was found.

fun UIntArray.findLast(predicate: (UInt) -> Boolean): UInt?
fun <T> Iterable<T>.findLast(predicate: (T) -> Boolean): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

first

Returns first element.

fun UIntArray.first(): UInt

Returns the first element matching the given predicate.

fun UIntArray.first(predicate: (UInt) -> Boolean): UInt
fun <T> Iterable<T>.first(predicate: (T) -> Boolean): T
Platform and version requirements: JVM (1.5), JS (1.5), Native (1.5)

firstNotNullOf

Returns the first non-null value produced by transform function being applied to elements of this collection in iteration order, or throws NoSuchElementException if no non-null value was produced.

fun <T, R : Any> Iterable<T>.firstNotNullOf(
    transform: (T) -> R?
): R
Platform and version requirements: JVM (1.5), JS (1.5), Native (1.5)

firstNotNullOfOrNull

Returns the first non-null value produced by transform function being applied to elements of this collection in iteration order, or null if no non-null value was produced.

fun <T, R : Any> Iterable<T>.firstNotNullOfOrNull(
    transform: (T) -> R?
): R?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

firstOrNull

Returns the first element, or null if the array is empty.

fun UIntArray.firstOrNull(): UInt?

Returns the first element matching the given predicate, or null if element was not found.

fun UIntArray.firstOrNull(
    predicate: (UInt) -> Boolean
): UInt?
fun <T> Iterable<T>.firstOrNull(
    predicate: (T) -> Boolean
): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

flatMap

Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.

fun <R> UIntArray.flatMap(
    transform: (UInt) -> Iterable<R>
): List<R>

Returns a single list of all elements yielded from results of transform function being invoked on each element of original collection.

fun <T, R> Iterable<T>.flatMap(
    transform: (T) -> Iterable<R>
): List<R>
fun <T, R> Iterable<T>.flatMap(
    transform: (T) -> Sequence<R>
): List<R>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

flatMapIndexed

Returns a single list of all elements yielded from results of transform function being invoked on each element and its index in the original array.

fun <R> UIntArray.flatMapIndexed(
    transform: (index: Int, UInt) -> Iterable<R>
): List<R>

Returns a single list of all elements yielded from results of transform function being invoked on each element and its index in the original collection.

fun <T, R> Iterable<T>.flatMapIndexed(
    transform: (index: Int, T) -> Iterable<R>
): List<R>
fun <T, R> Iterable<T>.flatMapIndexed(
    transform: (index: Int, T) -> Sequence<R>
): List<R>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

flatMapIndexedTo

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.

fun <R, C : MutableCollection<in R>> UIntArray.flatMapIndexedTo(
    destination: C, 
    transform: (index: Int, UInt) -> Iterable<R>
): C

Appends all elements yielded from results of transform function being invoked on each element and its index in the original collection, to the given destination.

fun <T, R, C : MutableCollection<in R>> Iterable<T>.flatMapIndexedTo(
    destination: C, 
    transform: (index: Int, T) -> Iterable<R>
): C
fun <T, R, C : MutableCollection<in R>> Iterable<T>.flatMapIndexedTo(
    destination: C, 
    transform: (index: Int, T) -> Sequence<R>
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

flatMapTo

Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.

fun <R, C : MutableCollection<in R>> UIntArray.flatMapTo(
    destination: C, 
    transform: (UInt) -> Iterable<R>
): C

Appends all elements yielded from results of transform function being invoked on each element of original collection, to the given destination.

fun <T, R, C : MutableCollection<in R>> Iterable<T>.flatMapTo(
    destination: C, 
    transform: (T) -> Iterable<R>
): C
fun <T, R, C : MutableCollection<in R>> Iterable<T>.flatMapTo(
    destination: C, 
    transform: (T) -> Sequence<R>
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

fold

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.

fun <R> UIntArray.fold(
    initial: R, 
    operation: (acc: R, UInt) -> R
): R
fun <T, R> Iterable<T>.fold(
    initial: R, 
    operation: (acc: R, T) -> R
): R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

foldIndexed

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element with its index in the original array.

fun <R> UIntArray.foldIndexed(
    initial: R, 
    operation: (index: Int, acc: R, UInt) -> R
): R

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element with its index in the original collection.

fun <T, R> Iterable<T>.foldIndexed(
    initial: R, 
    operation: (index: Int, acc: R, T) -> R
): R
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

foldRight

Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.

fun <R> UIntArray.foldRight(
    initial: R, 
    operation: (UInt, acc: R) -> R
): R
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

foldRightIndexed

Accumulates value starting with initial value and applying operation from right to left to each element with its index in the original array and current accumulator value.

fun <R> UIntArray.foldRightIndexed(
    initial: R, 
    operation: (index: Int, UInt, acc: R) -> R
): R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

forEach

Performs the given action on each element.

fun UIntArray.forEach(action: (UInt) -> Unit)
fun <T> Iterable<T>.forEach(action: (T) -> Unit)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

forEachIndexed

Performs the given action on each element, providing sequential index with the element.

fun UIntArray.forEachIndexed(
    action: (index: Int, UInt) -> Unit)
fun <T> Iterable<T>.forEachIndexed(
    action: (index: Int, T) -> Unit)
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

getOrElse

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.

fun UIntArray.getOrElse(
    index: Int, 
    defaultValue: (Int) -> UInt
): UInt
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

getOrNull

Returns an element at the given index or null if the index is out of bounds of this array.

fun UIntArray.getOrNull(index: Int): UInt?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

groupBy

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.

fun <K> UIntArray.groupBy(
    keySelector: (UInt) -> K
): Map<K, List<UInt>>

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.

fun <K, V> UIntArray.groupBy(
    keySelector: (UInt) -> K, 
    valueTransform: (UInt) -> V
): Map<K, List<V>>

Groups elements of the original collection 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.

fun <T, K> Iterable<T>.groupBy(
    keySelector: (T) -> K
): Map<K, List<T>>

Groups values returned by the valueTransform function applied to each element of the original collection 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.

fun <T, K, V> Iterable<T>.groupBy(
    keySelector: (T) -> K, 
    valueTransform: (T) -> V
): Map<K, List<V>>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

groupByTo

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.

fun <K, M : MutableMap<in K, MutableList<UInt>>> UIntArray.groupByTo(
    destination: M, 
    keySelector: (UInt) -> K
): M

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.

fun <K, V, M : MutableMap<in K, MutableList<V>>> UIntArray.groupByTo(
    destination: M, 
    keySelector: (UInt) -> K, 
    valueTransform: (UInt) -> V
): M

Groups elements of the original collection 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.

fun <T, K, M : MutableMap<in K, MutableList<T>>> Iterable<T>.groupByTo(
    destination: M, 
    keySelector: (T) -> K
): M

Groups values returned by the valueTransform function applied to each element of the original collection 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.

fun <T, K, V, M : MutableMap<in K, MutableList<V>>> Iterable<T>.groupByTo(
    destination: M, 
    keySelector: (T) -> K, 
    valueTransform: (T) -> V
): M
Platform and version requirements: JVM (1.1), JS (1.1), Native (1.1)

groupingBy

Creates a Grouping source from a collection to be used later with one of group-and-fold operations using the specified keySelector function to extract a key from each element.

fun <T, K> Iterable<T>.groupingBy(
    keySelector: (T) -> K
): Grouping<T, K>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

ifEmpty

Returns this array if it's not empty or the result of calling defaultValue function if the array is empty.

fun <C, R> C.ifEmpty(
    defaultValue: () -> R
): R where C : Array<*>, C : R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

indexOf

Returns first index of element, or -1 if the array does not contain element.

fun UIntArray.indexOf(element: UInt): Int

Returns first index of element, or -1 if the collection does not contain element.

fun <T> Iterable<T>.indexOf(element: T): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

indexOfFirst

Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.

fun UIntArray.indexOfFirst(predicate: (UInt) -> Boolean): Int

Returns index of the first element matching the given predicate, or -1 if the collection does not contain such element.

fun <T> Iterable<T>.indexOfFirst(
    predicate: (T) -> Boolean
): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

indexOfLast

Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.

fun UIntArray.indexOfLast(predicate: (UInt) -> Boolean): Int

Returns index of the last element matching the given predicate, or -1 if the collection does not contain such element.

fun <T> Iterable<T>.indexOfLast(
    predicate: (T) -> Boolean
): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

intersect

Returns a set containing all elements that are contained by both this collection and the specified collection.

infix fun <T> Iterable<T>.intersect(
    other: Iterable<T>
): Set<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

isNotEmpty

Returns true if the collection is not empty.

fun <T> Collection<T>.isNotEmpty(): Boolean
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

isNullOrEmpty

Returns true if this nullable collection is either null or empty.

fun <T> Collection<T>?.isNullOrEmpty(): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

joinTo

Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.

fun <T, A : Appendable> Iterable<T>.joinTo(
    buffer: A, 
    separator: CharSequence = ", ", 
    prefix: CharSequence = "", 
    postfix: CharSequence = "", 
    limit: Int = -1, 
    truncated: CharSequence = "...", 
    transform: ((T) -> CharSequence)? = null
): A
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

joinToString

Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.

fun <T> Iterable<T>.joinToString(
    separator: CharSequence = ", ", 
    prefix: CharSequence = "", 
    postfix: CharSequence = "", 
    limit: Int = -1, 
    truncated: CharSequence = "...", 
    transform: ((T) -> CharSequence)? = null
): String
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

last

Returns the last element.

fun UIntArray.last(): UInt

Returns the last element matching the given predicate.

fun UIntArray.last(predicate: (UInt) -> Boolean): UInt
fun <T> Iterable<T>.last(predicate: (T) -> Boolean): T
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

lastIndexOf

Returns last index of element, or -1 if the array does not contain element.

fun UIntArray.lastIndexOf(element: UInt): Int

Returns last index of element, or -1 if the collection does not contain element.

fun <T> Iterable<T>.lastIndexOf(element: T): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

lastOrNull

Returns the last element, or null if the array is empty.

fun UIntArray.lastOrNull(): UInt?

Returns the last element matching the given predicate, or null if no such element was found.

fun UIntArray.lastOrNull(predicate: (UInt) -> Boolean): UInt?
fun <T> Iterable<T>.lastOrNull(predicate: (T) -> Boolean): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

map

Returns a list containing the results of applying the given transform function to each element in the original array.

fun <R> UIntArray.map(transform: (UInt) -> R): List<R>

Returns a list containing the results of applying the given transform function to each element in the original collection.

fun <T, R> Iterable<T>.map(transform: (T) -> R): List<R>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapIndexed

Returns a list containing the results of applying the given transform function to each element and its index in the original array.

fun <R> UIntArray.mapIndexed(
    transform: (index: Int, UInt) -> R
): List<R>

Returns a list containing the results of applying the given transform function to each element and its index in the original collection.

fun <T, R> Iterable<T>.mapIndexed(
    transform: (index: Int, T) -> R
): List<R>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapIndexedNotNull

Returns a list containing only the non-null results of applying the given transform function to each element and its index in the original collection.

fun <T, R : Any> Iterable<T>.mapIndexedNotNull(
    transform: (index: Int, T) -> R?
): List<R>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapIndexedNotNullTo

Applies the given transform function to each element and its index in the original collection and appends only the non-null results to the given destination.

fun <T, R : Any, C : MutableCollection<in R>> Iterable<T>.mapIndexedNotNullTo(
    destination: C, 
    transform: (index: Int, T) -> R?
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapIndexedTo

Applies the given transform function to each element and its index in the original array and appends the results to the given destination.

fun <R, C : MutableCollection<in R>> UIntArray.mapIndexedTo(
    destination: C, 
    transform: (index: Int, UInt) -> R
): C

Applies the given transform function to each element and its index in the original collection and appends the results to the given destination.

fun <T, R, C : MutableCollection<in R>> Iterable<T>.mapIndexedTo(
    destination: C, 
    transform: (index: Int, T) -> R
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapNotNull

Returns a list containing only the non-null results of applying the given transform function to each element in the original collection.

fun <T, R : Any> Iterable<T>.mapNotNull(
    transform: (T) -> R?
): List<R>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapNotNullTo

Applies the given transform function to each element in the original collection and appends only the non-null results to the given destination.

fun <T, R : Any, C : MutableCollection<in R>> Iterable<T>.mapNotNullTo(
    destination: C, 
    transform: (T) -> R?
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

mapTo

Applies the given transform function to each element of the original array and appends the results to the given destination.

fun <R, C : MutableCollection<in R>> UIntArray.mapTo(
    destination: C, 
    transform: (UInt) -> R
): C

Applies the given transform function to each element of the original collection and appends the results to the given destination.

fun <T, R, C : MutableCollection<in R>> Iterable<T>.mapTo(
    destination: C, 
    transform: (T) -> R
): C
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

max

fun UIntArray.max(): UInt?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

maxBy

fun <R : Comparable<R>> UIntArray.maxBy(
    selector: (UInt) -> R
): UInt?
fun <T, R : Comparable<R>> Iterable<T>.maxBy(
    selector: (T) -> R
): T?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxByOrNull

Returns the first element yielding the largest value of the given function or null if there are no elements.

fun <R : Comparable<R>> UIntArray.maxByOrNull(
    selector: (UInt) -> R
): UInt?
fun <T, R : Comparable<R>> Iterable<T>.maxByOrNull(
    selector: (T) -> R
): T?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxOf

Returns the largest value among all values produced by selector function applied to each element in the array.

fun UIntArray.maxOf(selector: (UInt) -> Double): Double
fun UIntArray.maxOf(selector: (UInt) -> Float): Float
fun <R : Comparable<R>> UIntArray.maxOf(
    selector: (UInt) -> R
): R

Returns the largest value among all values produced by selector function applied to each element in the collection.

fun <T> Iterable<T>.maxOf(selector: (T) -> Double): Double
fun <T> Iterable<T>.maxOf(selector: (T) -> Float): Float
fun <T, R : Comparable<R>> Iterable<T>.maxOf(
    selector: (T) -> R
): R
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxOfOrNull

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.

fun UIntArray.maxOfOrNull(
    selector: (UInt) -> Double
): Double?
fun UIntArray.maxOfOrNull(selector: (UInt) -> Float): Float?
fun <R : Comparable<R>> UIntArray.maxOfOrNull(
    selector: (UInt) -> R
): R?

Returns the largest value among all values produced by selector function applied to each element in the collection or null if there are no elements.

fun <T> Iterable<T>.maxOfOrNull(
    selector: (T) -> Double
): Double?
fun <T> Iterable<T>.maxOfOrNull(
    selector: (T) -> Float
): Float?
fun <T, R : Comparable<R>> Iterable<T>.maxOfOrNull(
    selector: (T) -> R
): R?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxOfWith

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array.

fun <R> UIntArray.maxOfWith(
    comparator: Comparator<in R>, 
    selector: (UInt) -> R
): R

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the collection.

fun <T, R> Iterable<T>.maxOfWith(
    comparator: Comparator<in R>, 
    selector: (T) -> R
): R
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxOfWithOrNull

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.

fun <R> UIntArray.maxOfWithOrNull(
    comparator: Comparator<in R>, 
    selector: (UInt) -> R
): R?

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the collection or null if there are no elements.

fun <T, R> Iterable<T>.maxOfWithOrNull(
    comparator: Comparator<in R>, 
    selector: (T) -> R
): R?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxOrNull

Returns the largest element or null if there are no elements.

fun UIntArray.maxOrNull(): UInt?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

maxWith

fun UIntArray.maxWith(comparator: Comparator<in UInt>): UInt?
fun <T> Iterable<T>.maxWith(comparator: Comparator<in T>): T?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

maxWithOrNull

Returns the first element having the largest value according to the provided comparator or null if there are no elements.

fun UIntArray.maxWithOrNull(
    comparator: Comparator<in UInt>
): UInt?
fun <T> Iterable<T>.maxWithOrNull(
    comparator: Comparator<in T>
): T?
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

min

fun UIntArray.min(): UInt?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

minBy

fun <R : Comparable<R>> UIntArray.minBy(
    selector: (UInt) -> R
): UInt?
fun <T, R : Comparable<R>> Iterable<T>.minBy(
    selector: (T) -> R
): T?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minByOrNull

Returns the first element yielding the smallest value of the given function or null if there are no elements.

fun <R : Comparable<R>> UIntArray.minByOrNull(
    selector: (UInt) -> R
): UInt?
fun <T, R : Comparable<R>> Iterable<T>.minByOrNull(
    selector: (T) -> R
): T?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minOf

Returns the smallest value among all values produced by selector function applied to each element in the array.

fun UIntArray.minOf(selector: (UInt) -> Double): Double
fun UIntArray.minOf(selector: (UInt) -> Float): Float
fun <R : Comparable<R>> UIntArray.minOf(
    selector: (UInt) -> R
): R

Returns the smallest value among all values produced by selector function applied to each element in the collection.

fun <T> Iterable<T>.minOf(selector: (T) -> Double): Double
fun <T> Iterable<T>.minOf(selector: (T) -> Float): Float
fun <T, R : Comparable<R>> Iterable<T>.minOf(
    selector: (T) -> R
): R
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minOfOrNull

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.

fun UIntArray.minOfOrNull(
    selector: (UInt) -> Double
): Double?
fun UIntArray.minOfOrNull(selector: (UInt) -> Float): Float?
fun <R : Comparable<R>> UIntArray.minOfOrNull(
    selector: (UInt) -> R
): R?

Returns the smallest value among all values produced by selector function applied to each element in the collection or null if there are no elements.

fun <T> Iterable<T>.minOfOrNull(
    selector: (T) -> Double
): Double?
fun <T> Iterable<T>.minOfOrNull(
    selector: (T) -> Float
): Float?
fun <T, R : Comparable<R>> Iterable<T>.minOfOrNull(
    selector: (T) -> R
): R?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minOfWith

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.

fun <R> UIntArray.minOfWith(
    comparator: Comparator<in R>, 
    selector: (UInt) -> R
): R

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the collection.

fun <T, R> Iterable<T>.minOfWith(
    comparator: Comparator<in R>, 
    selector: (T) -> R
): R
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minOfWithOrNull

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.

fun <R> UIntArray.minOfWithOrNull(
    comparator: Comparator<in R>, 
    selector: (UInt) -> R
): R?

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the collection or null if there are no elements.

fun <T, R> Iterable<T>.minOfWithOrNull(
    comparator: Comparator<in R>, 
    selector: (T) -> R
): R?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minOrNull

Returns the smallest element or null if there are no elements.

fun UIntArray.minOrNull(): UInt?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

minus

Returns a list containing all elements of the original collection without the first occurrence of the given element.

operator fun <T> Iterable<T>.minus(element: T): List<T>

Returns a list containing all elements of the original collection except the elements contained in the given elements array.

operator fun <T> Iterable<T>.minus(
    elements: Array<out T>
): List<T>

Returns a list containing all elements of the original collection except the elements contained in the given elements collection.

operator fun <T> Iterable<T>.minus(
    elements: Iterable<T>
): List<T>

Returns a list containing all elements of the original collection except the elements contained in the given elements sequence.

operator fun <T> Iterable<T>.minus(
    elements: Sequence<T>
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

minusElement

Returns a list containing all elements of the original collection without the first occurrence of the given element.

fun <T> Iterable<T>.minusElement(element: T): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

minWith

fun UIntArray.minWith(comparator: Comparator<in UInt>): UInt?
fun <T> Iterable<T>.minWith(comparator: Comparator<in T>): T?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

minWithOrNull

Returns the first element having the smallest value according to the provided comparator or null if there are no elements.

fun UIntArray.minWithOrNull(
    comparator: Comparator<in UInt>
): UInt?
fun <T> Iterable<T>.minWithOrNull(
    comparator: Comparator<in T>
): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

none

Returns true if the array has no elements.

fun UIntArray.none(): Boolean

Returns true if no elements match the given predicate.

fun UIntArray.none(predicate: (UInt) -> Boolean): Boolean
fun <T> Iterable<T>.none(predicate: (T) -> Boolean): Boolean
Platform and version requirements: JVM (1.1), JS (1.1), Native (1.1)

onEach

Performs the given action on each element and returns the array itself afterwards.

fun UIntArray.onEach(action: (UInt) -> Unit): UIntArray

Performs the given action on each element and returns the collection itself afterwards.

fun <T, C : Iterable<T>> C.onEach(action: (T) -> Unit): C
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

onEachIndexed

Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.

fun UIntArray.onEachIndexed(
    action: (index: Int, UInt) -> Unit
): UIntArray

Performs the given action on each element, providing sequential index with the element, and returns the collection itself afterwards.

fun <T, C : Iterable<T>> C.onEachIndexed(
    action: (index: Int, T) -> Unit
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

orEmpty

Returns this Collection if it's not null and the empty list otherwise.

fun <T> Collection<T>?.orEmpty(): Collection<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

partition

Splits the original collection into pair of lists, where first list contains elements for which predicate yielded true, while second list contains elements for which predicate yielded false.

fun <T> Iterable<T>.partition(
    predicate: (T) -> Boolean
): Pair<List<T>, List<T>>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

plus

Returns an array containing all elements of the original array and then the given element.

operator fun UIntArray.plus(element: UInt): UIntArray

Returns an array containing all elements of the original array and then all elements of the given elements collection.

operator fun UIntArray.plus(
    elements: Collection<UInt>
): UIntArray

Returns an array containing all elements of the original array and then all elements of the given elements array.

operator fun UIntArray.plus(elements: UIntArray): UIntArray

Returns a list containing all elements of the original collection and then the given element.

operator fun <T> Iterable<T>.plus(element: T): List<T>
operator fun <T> Collection<T>.plus(element: T): List<T>

Returns a list containing all elements of the original collection and then all elements of the given elements array.

operator fun <T> Iterable<T>.plus(
    elements: Array<out T>
): List<T>
operator fun <T> Collection<T>.plus(
    elements: Array<out T>
): List<T>

Returns a list containing all elements of the original collection and then all elements of the given elements collection.

operator fun <T> Iterable<T>.plus(
    elements: Iterable<T>
): List<T>
operator fun <T> Collection<T>.plus(
    elements: Iterable<T>
): List<T>

Returns a list containing all elements of the original collection and then all elements of the given elements sequence.

operator fun <T> Iterable<T>.plus(
    elements: Sequence<T>
): List<T>
operator fun <T> Collection<T>.plus(
    elements: Sequence<T>
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

plusElement

Returns a list containing all elements of the original collection and then the given element.

fun <T> Iterable<T>.plusElement(element: T): List<T>
fun <T> Collection<T>.plusElement(element: T): List<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

random

Returns a random element from this array.

fun UIntArray.random(): UInt

Returns a random element from this array using the specified source of randomness.

fun UIntArray.random(random: Random): UInt
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

randomOrNull

Returns a random element from this array, or null if this array is empty.

fun UIntArray.randomOrNull(): UInt?

Returns a random element from this array using the specified source of randomness, or null if this array is empty.

fun UIntArray.randomOrNull(random: Random): UInt?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

reduce

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.

fun UIntArray.reduce(
    operation: (acc: UInt, UInt) -> UInt
): UInt
fun <S, T : S> Iterable<T>.reduce(
    operation: (acc: S, T) -> S
): S
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

reduceIndexed

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original array.

fun UIntArray.reduceIndexed(
    operation: (index: Int, acc: UInt, UInt) -> UInt
): UInt

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original collection.

fun <S, T : S> Iterable<T>.reduceIndexed(
    operation: (index: Int, acc: S, T) -> S
): S
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

reduceIndexedOrNull

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original array.

fun UIntArray.reduceIndexedOrNull(
    operation: (index: Int, acc: UInt, UInt) -> UInt
): UInt?

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original collection.

fun <S, T : S> Iterable<T>.reduceIndexedOrNull(
    operation: (index: Int, acc: S, T) -> S
): S?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

reduceOrNull

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.

fun UIntArray.reduceOrNull(
    operation: (acc: UInt, UInt) -> UInt
): UInt?
fun <S, T : S> Iterable<T>.reduceOrNull(
    operation: (acc: S, T) -> S
): S?
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

reduceRight

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

fun UIntArray.reduceRight(
    operation: (UInt, acc: UInt) -> UInt
): UInt
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

reduceRightIndexed

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.

fun UIntArray.reduceRightIndexed(
    operation: (index: Int, UInt, acc: UInt) -> UInt
): UInt
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

reduceRightIndexedOrNull

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.

fun UIntArray.reduceRightIndexedOrNull(
    operation: (index: Int, UInt, acc: UInt) -> UInt
): UInt?
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

reduceRightOrNull

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

fun UIntArray.reduceRightOrNull(
    operation: (UInt, acc: UInt) -> UInt
): UInt?
Platform and version requirements: Native (1.3)

refTo

fun UIntArray.refTo(index: Int): CValuesRef<UIntVar>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

requireNoNulls

Returns an original collection containing all the non-null elements, throwing an IllegalArgumentException if there are any null elements.

fun <T : Any> Iterable<T?>.requireNoNulls(): Iterable<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

reverse

Reverses elements in the array in-place.

fun UIntArray.reverse()

Reverses elements of the array in the specified range in-place.

fun UIntArray.reverse(fromIndex: Int, toIndex: Int)
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

reversed

Returns a list with elements in reversed order.

fun UIntArray.reversed(): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

reversedArray

Returns an array with elements of this array in reversed order.

fun UIntArray.reversedArray(): UIntArray
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

runningFold

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 initial value.

fun <R> UIntArray.runningFold(
    initial: R, 
    operation: (acc: R, UInt) -> R
): List<R>
fun <T, R> Iterable<T>.runningFold(
    initial: R, 
    operation: (acc: R, T) -> R
): List<R>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

runningFoldIndexed

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 initial value.

fun <R> UIntArray.runningFoldIndexed(
    initial: R, 
    operation: (index: Int, acc: R, UInt) -> R
): List<R>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original collection and current accumulator value that starts with initial value.

fun <T, R> Iterable<T>.runningFoldIndexed(
    initial: R, 
    operation: (index: Int, acc: R, T) -> R
): List<R>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

runningReduce

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.

fun UIntArray.runningReduce(
    operation: (acc: UInt, UInt) -> UInt
): List<UInt>

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 collection.

fun <S, T : S> Iterable<T>.runningReduce(
    operation: (acc: S, T) -> S
): List<S>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

runningReduceIndexed

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.

fun UIntArray.runningReduceIndexed(
    operation: (index: Int, acc: UInt, UInt) -> UInt
): List<UInt>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original collection and current accumulator value that starts with the first element of this collection.

fun <S, T : S> Iterable<T>.runningReduceIndexed(
    operation: (index: Int, acc: S, T) -> S
): List<S>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

scan

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 initial value.

fun <R> UIntArray.scan(
    initial: R, 
    operation: (acc: R, UInt) -> R
): List<R>
fun <T, R> Iterable<T>.scan(
    initial: R, 
    operation: (acc: R, T) -> R
): List<R>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

scanIndexed

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 initial value.

fun <R> UIntArray.scanIndexed(
    initial: R, 
    operation: (index: Int, acc: R, UInt) -> R
): List<R>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original collection and current accumulator value that starts with initial value.

fun <T, R> Iterable<T>.scanIndexed(
    initial: R, 
    operation: (index: Int, acc: R, T) -> R
): List<R>
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)

shuffle

Randomly shuffles elements in this array in-place.

fun UIntArray.shuffle()

Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.

fun UIntArray.shuffle(random: Random)
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

shuffled

Returns a new list with the elements of this list randomly shuffled using the specified random instance as the source of randomness.

fun <T> Iterable<T>.shuffled(random: Random): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

single

Returns the single element, or throws an exception if the array is empty or has more than one element.

fun UIntArray.single(): UInt

Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.

fun UIntArray.single(predicate: (UInt) -> Boolean): UInt
fun <T> Iterable<T>.single(predicate: (T) -> Boolean): T
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

singleOrNull

Returns single element, or null if the array is empty or has more than one element.

fun UIntArray.singleOrNull(): UInt?

Returns the single element matching the given predicate, or null if element was not found or more than one element was found.

fun UIntArray.singleOrNull(
    predicate: (UInt) -> Boolean
): UInt?
fun <T> Iterable<T>.singleOrNull(
    predicate: (T) -> Boolean
): T?
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

slice

Returns a list containing elements at indices in the specified indices range.

fun UIntArray.slice(indices: IntRange): List<UInt>

Returns a list containing elements at specified indices.

fun UIntArray.slice(indices: Iterable<Int>): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sliceArray

Returns an array containing elements of this array at specified indices.

fun UIntArray.sliceArray(indices: Collection<Int>): UIntArray

Returns an array containing elements at indices in the specified indices range.

fun UIntArray.sliceArray(indices: IntRange): UIntArray
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sort

Sorts the array in-place.

fun UIntArray.sort()

Sorts a range in the array in-place.

fun UIntArray.sort(fromIndex: Int = 0, toIndex: Int = size)
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sortDescending

Sorts elements in the array in-place descending according to their natural sort order.

fun UIntArray.sortDescending()

Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.

fun UIntArray.sortDescending(fromIndex: Int, toIndex: Int)
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sorted

Returns a list of all elements sorted according to their natural sort order.

fun UIntArray.sorted(): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sortedArray

Returns an array with all elements of this array sorted according to their natural sort order.

fun UIntArray.sortedArray(): UIntArray
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sortedArrayDescending

Returns an array with all elements of this array sorted descending according to their natural sort order.

fun UIntArray.sortedArrayDescending(): UIntArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

sortedBy

Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.

fun <T, R : Comparable<R>> Iterable<T>.sortedBy(
    selector: (T) -> R?
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

sortedByDescending

Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.

fun <T, R : Comparable<R>> Iterable<T>.sortedByDescending(
    selector: (T) -> R?
): List<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sortedDescending

Returns a list of all elements sorted descending according to their natural sort order.

fun UIntArray.sortedDescending(): List<UInt>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

sortedWith

Returns a list of all elements sorted according to the specified comparator.

fun <T> Iterable<T>.sortedWith(
    comparator: Comparator<in T>
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

subtract

Returns a set containing all elements that are contained by this collection and not contained by the specified collection.

infix fun <T> Iterable<T>.subtract(
    other: Iterable<T>
): Set<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

sum

Returns the sum of all elements in the array.

fun UIntArray.sum(): UInt
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

sumBy

Returns the sum of all values produced by selector function applied to each element in the array.

fun UIntArray.sumBy(selector: (UInt) -> UInt): UInt

Returns the sum of all values produced by selector function applied to each element in the collection.

fun <T> Iterable<T>.sumBy(selector: (T) -> Int): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

sumByDouble

Returns the sum of all values produced by selector function applied to each element in the array.

fun UIntArray.sumByDouble(selector: (UInt) -> Double): Double

Returns the sum of all values produced by selector function applied to each element in the collection.

fun <T> Iterable<T>.sumByDouble(
    selector: (T) -> Double
): Double

sumOf

Returns the sum of all values produced by selector function applied to each element in the array.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun UIntArray.sumOf(selector: (UInt) -> Double): Double
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun UIntArray.sumOf(selector: (UInt) -> Int): Int
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun UIntArray.sumOf(selector: (UInt) -> Long): Long
Platform and version requirements: JVM (1.5), JS (1.5), Native (1.5)
fun UIntArray.sumOf(selector: (UInt) -> UInt): UInt
Platform and version requirements: JVM (1.5), JS (1.5), Native (1.5)
fun UIntArray.sumOf(selector: (UInt) -> ULong): ULong
Platform and version requirements: JVM (1.4)
fun UIntArray.sumOf(
    selector: (UInt) -> BigDecimal
): BigDecimal
Platform and version requirements: JVM (1.4)
fun UIntArray.sumOf(
    selector: (UInt) -> BigInteger
): BigInteger

Returns the sum of all values produced by selector function applied to each element in the collection.

Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun <T> Iterable<T>.sumOf(selector: (T) -> Double): Double
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun <T> Iterable<T>.sumOf(selector: (T) -> Int): Int
Platform and version requirements: JVM (1.4), JS (1.4), Native (1.4)
fun <T> Iterable<T>.sumOf(selector: (T) -> Long): Long
Platform and version requirements: JVM (1.5), JS (1.5), Native (1.5)
fun <T> Iterable<T>.sumOf(selector: (T) -> UInt): UInt
Platform and version requirements: JVM (1.5), JS (1.5), Native (1.5)
fun <T> Iterable<T>.sumOf(selector: (T) -> ULong): ULong
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

take

Returns a list containing first n elements.

fun UIntArray.take(n: Int): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

takeLast

Returns a list containing last n elements.

fun UIntArray.takeLast(n: Int): List<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

takeLastWhile

Returns a list containing last elements satisfying the given predicate.

fun UIntArray.takeLastWhile(
    predicate: (UInt) -> Boolean
): List<UInt>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

takeWhile

Returns a list containing first elements satisfying the given predicate.

fun UIntArray.takeWhile(
    predicate: (UInt) -> Boolean
): List<UInt>
fun <T> Iterable<T>.takeWhile(
    predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

toCollection

Appends all elements to the given destination collection.

fun <T, C : MutableCollection<in T>> Iterable<T>.toCollection(
    destination: C
): C
Platform and version requirements: Native (1.3)

toCValues

fun UIntArray.toCValues(): CValues<UIntVar>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

toHashSet

Returns a new HashSet of all elements.

fun <T> Iterable<T>.toHashSet(): HashSet<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

toIntArray

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.

fun UIntArray.toIntArray(): IntArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

toList

Returns a List containing all elements.

fun <T> Iterable<T>.toList(): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

toMutableSet

Returns a new MutableSet containing all distinct elements from the given collection.

fun <T> Iterable<T>.toMutableSet(): MutableSet<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

toSet

Returns a Set of all elements.

fun <T> Iterable<T>.toSet(): Set<T>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

toTypedArray

Returns a typed object array containing all of the elements of this primitive array.

fun UIntArray.toTypedArray(): Array<UInt>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

toUIntArray

Returns an array of UInt containing all of the elements of this collection.

fun Collection<UInt>.toUIntArray(): UIntArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

union

Returns a set containing all distinct elements from both collections.

infix fun <T> Iterable<T>.union(other: Iterable<T>): Set<T>
Platform and version requirements: JVM (1.2), JS (1.2), Native (1.2)

windowed

Returns a list of snapshots of the window of the given size sliding along this collection with the given step, where each snapshot is a list.

fun <T> Iterable<T>.windowed(
    size: Int, 
    step: Int = 1, 
    partialWindows: Boolean = false
): List<List<T>>

Returns a list of results of applying the given transform function to an each list representing a view over the window of the given size sliding along this collection with the given step.

fun <T, R> Iterable<T>.windowed(
    size: Int, 
    step: Int = 1, 
    partialWindows: Boolean = false, 
    transform: (List<T>) -> R
): List<R>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)

withIndex

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.

fun UIntArray.withIndex(): Iterable<IndexedValue<UInt>>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

zip

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.

infix fun <R> UIntArray.zip(
    other: Array<out R>
): List<Pair<UInt, R>>
infix fun UIntArray.zip(
    other: UIntArray
): List<Pair<UInt, UInt>>

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.

fun <R, V> UIntArray.zip(
    other: Array<out R>, 
    transform: (a: UInt, b: R) -> V
): List<V>

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.

infix fun <R> UIntArray.zip(
    other: Iterable<R>
): List<Pair<UInt, R>>

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.

fun <R, V> UIntArray.zip(
    other: Iterable<R>, 
    transform: (a: UInt, b: R) -> V
): List<V>

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 array.

fun <V> UIntArray.zip(
    other: UIntArray, 
    transform: (a: UInt, b: UInt) -> V
): List<V>

Returns a list of pairs built from the elements of this collection and the other array with the same index. The returned list has length of the shortest collection.

infix fun <T, R> Iterable<T>.zip(
    other: Array<out R>
): List<Pair<T, R>>

Returns a list of values built from the elements of this collection 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.

fun <T, R, V> Iterable<T>.zip(
    other: Array<out R>, 
    transform: (a: T, b: R) -> V
): List<V>

Returns a list of pairs built from the elements of this collection and other collection with the same index. The returned list has length of the shortest collection.

infix fun <T, R> Iterable<T>.zip(
    other: Iterable<R>
): List<Pair<T, R>>

Returns a list of values built from the elements of this collection 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.

fun <T, R, V> Iterable<T>.zip(
    other: Iterable<R>, 
    transform: (a: T, b: R) -> V
): List<V>
Platform and version requirements: JVM (1.2), JS (1.2), Native (1.2)

zipWithNext

Returns a list of pairs of each two adjacent elements in this collection.

fun <T> Iterable<T>.zipWithNext(): List<Pair<T, T>>

Returns a list containing the results of applying the given transform function to an each pair of two adjacent elements in this collection.

fun <T, R> Iterable<T>.zipWithNext(
    transform: (a: T, b: T) -> R
): List<R>

© 2010–2021 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-u-int-array/index.html