Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if all elements match the given predicate.
fun <T> Iterable<T>.all(predicate: (T) -> Boolean): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if collection has at least one element.
fun <T> Iterable<T>.any(): Boolean
Returns true
if at least one element matches the given predicate.
fun <T> Iterable<T>.any(predicate: (T) -> Boolean): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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)
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)
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)
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)
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)
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)
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.0), JS (1.0), Native (1.0)
Returns an average value of elements in the collection.
fun Iterable<Byte>.average(): Double
fun Iterable<Short>.average(): Double
fun Iterable<Int>.average(): Double
fun Iterable<Long>.average(): Double
fun Iterable<Float>.average(): Double
fun Iterable<Double>.average(): Double
Platform and version requirements: JVM (1.2), JS (1.2), Native (1.2)
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.0), JS (1.0), Native (1.0)
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)
Returns the number of elements in this collection.
fun <T> Iterable<T>.count(): Int
Returns the number of elements matching the given predicate.
fun <T> Iterable<T>.count(predicate: (T) -> Boolean): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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.0), JS (1.0), Native (1.0)
Returns a list containing all elements except first n elements.
fun <T> Iterable<T>.drop(n: Int): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements except first elements that satisfy the given predicate.
fun <T> Iterable<T>.dropWhile(
predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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.0), JS (1.0), Native (1.0)
Returns an element at the given index or null
if the index is out of bounds of this collection.
fun <T> Iterable<T>.elementAtOrNull(index: Int): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing only elements matching the given predicate.
fun <T> Iterable<T>.filter(
predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing only elements matching the given predicate.
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)
Appends all elements matching the given predicate to the given destination.
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)
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)
Returns a list containing all elements that are instances of specified class.
fun <R> Iterable<*>.filterIsInstance(
klass: Class<R>
): List<R>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
Appends all elements that are instances of specified class to the given destination.
fun <C : MutableCollection<in R>, R> Iterable<*>.filterIsInstanceTo(
destination: C,
klass: Class<R>
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements not matching the given predicate.
fun <T> Iterable<T>.filterNot(
predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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)
Appends all elements not matching the given predicate to the given destination.
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)
Appends all elements matching the given predicate to the given destination.
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)
Returns the first element matching the given predicate, or null
if no such element was found.
fun <T> Iterable<T>.find(predicate: (T) -> Boolean): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the last element matching the given predicate, or null
if no such element was found.
fun <T> Iterable<T>.findLast(predicate: (T) -> Boolean): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns first element.
fun <T> Iterable<T>.first(): T
Returns the first element matching the given predicate.
fun <T> Iterable<T>.first(predicate: (T) -> Boolean): T
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element, or null
if the collection is empty.
fun <T> Iterable<T>.firstOrNull(): T?
Returns the first element matching the given predicate, or null
if element was not found.
fun <T> Iterable<T>.firstOrNull(
predicate: (T) -> Boolean
): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a single list of all elements from all collections in the given collection.
fun <T> Iterable<Iterable<T>>.flatten(): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.
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)
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.0), JS (1.0), Native (1.0)
Performs the given action on each element.
fun <T> Iterable<T>.forEach(action: (T) -> Unit)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Performs the given action on each element, providing sequential index with the element.
fun <T> Iterable<T>.forEachIndexed(
action: (index: Int, T) -> Unit)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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)
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.0), JS (1.0), Native (1.0)
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)
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)
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)
Returns a set containing all elements that are contained by both this set 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)
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)
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)
Returns the last element.
fun <T> Iterable<T>.last(): T
Returns the last element matching the given predicate.
fun <T> Iterable<T>.last(predicate: (T) -> Boolean): T
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
Returns the last element, or null
if the collection is empty.
fun <T> Iterable<T>.lastOrNull(): T?
Returns the last element matching the given predicate, or null
if no such element was found.
fun <T> Iterable<T>.lastOrNull(predicate: (T) -> Boolean): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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)
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)
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)
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)
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)
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)
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.0), JS (1.0), Native (1.0)
Returns the largest element or null
if there are no elements.
fun Iterable<Double>.max(): Double?
fun Iterable<Float>.max(): Float?
fun <T : Comparable<T>> Iterable<T>.max(): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element yielding the largest value of the given function or null
if there are no elements.
fun <T, R : Comparable<R>> Iterable<T>.maxBy(
selector: (T) -> R
): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
fun <T> Iterable<T>.maxWith(comparator: Comparator<in T>): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the smallest element or null
if there are no elements.
fun Iterable<Double>.min(): Double?
fun Iterable<Float>.min(): Float?
fun <T : Comparable<T>> Iterable<T>.min(): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element yielding the smallest value of the given function or null
if there are no elements.
fun <T, R : Comparable<R>> Iterable<T>.minBy(
selector: (T) -> R
): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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)
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
fun <T> Iterable<T>.minWith(comparator: Comparator<in T>): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if the collection has no elements.
fun <T> Iterable<T>.none(): Boolean
Returns true
if no elements match the given predicate.
fun <T> Iterable<T>.none(predicate: (T) -> Boolean): Boolean
Platform and version requirements: JVM (1.1), JS (1.1), Native (1.1)
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.0), JS (1.0), Native (1.0)
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)
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>
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>
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>
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements of the original collection and then the given element.
fun <T> Iterable<T>.plusElement(element: T): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
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)
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.0), JS (1.0), Native (1.0)
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.0), JS (1.0), Native (1.0)
Returns a list with elements in reversed order.
fun <T> Iterable<T>.reversed(): List<T>
Returns a new list with the elements of this list randomly shuffled using the specified random instance as the source of randomness.
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
fun <T> Iterable<T>.shuffled(random: Random): List<T>
Platform and version requirements: JVM (1.2)
fun <T> Iterable<T>.shuffled(random: Random): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the single element, or throws an exception if the collection is empty or has more than one element.
fun <T> Iterable<T>.single(): T
Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.
fun <T> Iterable<T>.single(predicate: (T) -> Boolean): T
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns single element, or null
if the collection is empty or has more than one element.
fun <T> Iterable<T>.singleOrNull(): T?
Returns the single element matching the given predicate, or null
if element was not found or more than one element was found.
fun <T> Iterable<T>.singleOrNull(
predicate: (T) -> Boolean
): T?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list of all elements sorted according to their natural sort order.
fun <T : Comparable<T>> Iterable<T>.sorted(): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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.0), JS (1.0), Native (1.0)
Returns a list of all elements sorted descending according to their natural sort order.
fun <T : Comparable<T>> Iterable<T>.sortedDescending(): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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.0), JS (1.0), Native (1.0)
Returns the sum of all elements in the collection.
fun Iterable<Byte>.sum(): Int
fun Iterable<Short>.sum(): Int
fun Iterable<Int>.sum(): Int
fun Iterable<Long>.sum(): Long
fun Iterable<Float>.sum(): Float
fun Iterable<Double>.sum(): Double
fun Iterable<UInt>.sum(): UInt
fun Iterable<ULong>.sum(): ULong
fun Iterable<UByte>.sum(): UInt
fun Iterable<UShort>.sum(): UInt
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing first n elements.
fun <T> Iterable<T>.take(n: Int): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing first elements satisfying the given predicate.
fun <T> Iterable<T>.takeWhile(
predicate: (T) -> Boolean
): List<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Appends all elements to the given destination collection.
fun <T, C : MutableCollection<in T>> Iterable<T>.toCollection(
destination: C
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a HashSet of all elements.
fun <T> Iterable<T>.toHashSet(): HashSet<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
Returns a new map containing all key-value pairs from the given collection of pairs.
fun <K, V> Iterable<Pair<K, V>>.toMap(): Map<K, V>
Populates and returns the destination mutable map with key-value pairs from the given collection of pairs.
fun <K, V, M : MutableMap<in K, in V>> Iterable<Pair<K, V>>.toMap(
destination: M
): M
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a MutableList filled with all elements of this collection.
fun <T> Iterable<T>.toMutableList(): MutableList<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a mutable set 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)
Returns a Set of all elements.
fun <T> Iterable<T>.toSet(): Set<T>
Platform and version requirements: JVM (1.0)
Returns a SortedSet of all elements.
fun <T : Comparable<T>> Iterable<T>.toSortedSet(): SortedSet<T>
fun <T> Iterable<T>.toSortedSet(
comparator: Comparator<in T>
): SortedSet<T>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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.0), JS (1.0), Native (1.0)
Returns a pair of lists, where first list is built from the first values of each pair from this collection, second list is built from the second values of each pair from this collection.
fun <T, R> Iterable<Pair<T, R>>.unzip(): Pair<List<T>, List<R>>
Platform and version requirements: JVM (1.2), JS (1.2), Native (1.2)
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.0), JS (1.0), Native (1.0)
Returns a lazy Iterable of IndexedValue for each element of the original collection.
fun <T> Iterable<T>.withIndex(): Iterable<IndexedValue<T>>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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)
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>