@file:kotlin.jvm.JvmMultifileClass @file:kotlin.jvm.JvmName("CollectionsKt") package kotlin.collections // // NOTE THIS FILE IS AUTO-GENERATED by the GenerateStandardLib.kt // See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib // import kotlin.comparisons.* /** * Returns 1st *element* from the collection. */ @kotlin.internal.InlineOnly public header inline operator fun List.component1(): T /** * Returns 2nd *element* from the collection. */ @kotlin.internal.InlineOnly public header inline operator fun List.component2(): T /** * Returns 3rd *element* from the collection. */ @kotlin.internal.InlineOnly public header inline operator fun List.component3(): T /** * Returns 4th *element* from the collection. */ @kotlin.internal.InlineOnly public header inline operator fun List.component4(): T /** * Returns 5th *element* from the collection. */ @kotlin.internal.InlineOnly public header inline operator fun List.component5(): T /** * Returns `true` if [element] is found in the collection. */ public header operator fun <@kotlin.internal.OnlyInputTypes T> Iterable.contains(element: T): Boolean /** * Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this collection. */ public header fun Iterable.elementAt(index: Int): T /** * Returns an element at the given [index] or throws an [IndexOutOfBoundsException] if the [index] is out of bounds of this list. */ @kotlin.internal.InlineOnly public header inline fun List.elementAt(index: Int): T /** * 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. */ public header fun Iterable.elementAtOrElse(index: Int, defaultValue: (Int) -> T): T /** * Returns an element at the given [index] or the result of calling the [defaultValue] function if the [index] is out of bounds of this list. */ @kotlin.internal.InlineOnly public header inline fun List.elementAtOrElse(index: Int, defaultValue: (Int) -> T): T /** * Returns an element at the given [index] or `null` if the [index] is out of bounds of this collection. */ public header fun Iterable.elementAtOrNull(index: Int): T? /** * Returns an element at the given [index] or `null` if the [index] is out of bounds of this list. */ @kotlin.internal.InlineOnly public header inline fun List.elementAtOrNull(index: Int): T? /** * Returns the first element matching the given [predicate], or `null` if no such element was found. */ @kotlin.internal.InlineOnly public header inline fun Iterable.find(predicate: (T) -> Boolean): T? /** * Returns the last element matching the given [predicate], or `null` if no such element was found. */ @kotlin.internal.InlineOnly public header inline fun Iterable.findLast(predicate: (T) -> Boolean): T? /** * Returns the last element matching the given [predicate], or `null` if no such element was found. */ @kotlin.internal.InlineOnly public header inline fun List.findLast(predicate: (T) -> Boolean): T? /** * Returns first element. * @throws [NoSuchElementException] if the collection is empty. */ public header fun Iterable.first(): T /** * Returns first element. * @throws [NoSuchElementException] if the list is empty. */ public header fun List.first(): T /** * Returns the first element matching the given [predicate]. * @throws [NoSuchElementException] if no such element is found. */ public header inline fun Iterable.first(predicate: (T) -> Boolean): T /** * Returns the first element, or `null` if the collection is empty. */ public header fun Iterable.firstOrNull(): T? /** * Returns the first element, or `null` if the list is empty. */ public header fun List.firstOrNull(): T? /** * Returns the first element matching the given [predicate], or `null` if element was not found. */ public header inline fun Iterable.firstOrNull(predicate: (T) -> Boolean): T? /** * Returns an element at the given [index] or the result of calling the [defaultValue] function if the [index] is out of bounds of this list. */ @kotlin.internal.InlineOnly public header inline fun List.getOrElse(index: Int, defaultValue: (Int) -> T): T /** * Returns an element at the given [index] or `null` if the [index] is out of bounds of this list. */ public header fun List.getOrNull(index: Int): T? /** * Returns first index of [element], or -1 if the collection does not contain element. */ public header fun <@kotlin.internal.OnlyInputTypes T> Iterable.indexOf(element: T): Int /** * Returns first index of [element], or -1 if the list does not contain element. */ public header fun <@kotlin.internal.OnlyInputTypes T> List.indexOf(element: T): Int /** * Returns index of the first element matching the given [predicate], or -1 if the collection does not contain such element. */ public header inline fun Iterable.indexOfFirst(predicate: (T) -> Boolean): Int /** * Returns index of the first element matching the given [predicate], or -1 if the list does not contain such element. */ public header inline fun List.indexOfFirst(predicate: (T) -> Boolean): Int /** * Returns index of the last element matching the given [predicate], or -1 if the collection does not contain such element. */ public header inline fun Iterable.indexOfLast(predicate: (T) -> Boolean): Int /** * Returns index of the last element matching the given [predicate], or -1 if the list does not contain such element. */ public header inline fun List.indexOfLast(predicate: (T) -> Boolean): Int /** * Returns the last element. * @throws [NoSuchElementException] if the collection is empty. */ public header fun Iterable.last(): T /** * Returns the last element. * @throws [NoSuchElementException] if the list is empty. */ public header fun List.last(): T /** * Returns the last element matching the given [predicate]. * @throws [NoSuchElementException] if no such element is found. */ public header inline fun Iterable.last(predicate: (T) -> Boolean): T /** * Returns the last element matching the given [predicate]. * @throws [NoSuchElementException] if no such element is found. */ public header inline fun List.last(predicate: (T) -> Boolean): T /** * Returns last index of [element], or -1 if the collection does not contain element. */ public header fun <@kotlin.internal.OnlyInputTypes T> Iterable.lastIndexOf(element: T): Int /** * Returns last index of [element], or -1 if the list does not contain element. */ public header fun <@kotlin.internal.OnlyInputTypes T> List.lastIndexOf(element: T): Int /** * Returns the last element, or `null` if the collection is empty. */ public header fun Iterable.lastOrNull(): T? /** * Returns the last element, or `null` if the list is empty. */ public header fun List.lastOrNull(): T? /** * Returns the last element matching the given [predicate], or `null` if no such element was found. */ public header inline fun Iterable.lastOrNull(predicate: (T) -> Boolean): T? /** * Returns the last element matching the given [predicate], or `null` if no such element was found. */ public header inline fun List.lastOrNull(predicate: (T) -> Boolean): T? /** * Returns the single element, or throws an exception if the collection is empty or has more than one element. */ public header fun Iterable.single(): T /** * Returns the single element, or throws an exception if the list is empty or has more than one element. */ public header fun List.single(): T /** * Returns the single element matching the given [predicate], or throws exception if there is no or more than one matching element. */ public header inline fun Iterable.single(predicate: (T) -> Boolean): T /** * Returns single element, or `null` if the collection is empty or has more than one element. */ public header fun Iterable.singleOrNull(): T? /** * Returns single element, or `null` if the list is empty or has more than one element. */ public header fun List.singleOrNull(): T? /** * Returns the single element matching the given [predicate], or `null` if element was not found or more than one element was found. */ public header inline fun Iterable.singleOrNull(predicate: (T) -> Boolean): T? /** * Returns a list containing all elements except first [n] elements. */ public header fun Iterable.drop(n: Int): List /** * Returns a list containing all elements except last [n] elements. */ public header fun List.dropLast(n: Int): List /** * Returns a list containing all elements except last elements that satisfy the given [predicate]. */ public header inline fun List.dropLastWhile(predicate: (T) -> Boolean): List /** * Returns a list containing all elements except first elements that satisfy the given [predicate]. */ public header inline fun Iterable.dropWhile(predicate: (T) -> Boolean): List /** * Returns a list containing only elements matching the given [predicate]. */ public header inline fun Iterable.filter(predicate: (T) -> Boolean): List /** * Returns a list containing only elements matching the given [predicate]. * @param [predicate] function that takes the index of an element and the element itself * and returns the result of predicate evaluation on the element. */ public header inline fun Iterable.filterIndexed(predicate: (Int, T) -> Boolean): List /** * Appends all elements matching the given [predicate] to the given [destination]. * @param [predicate] function that takes the index of an element and the element itself * and returns the result of predicate evaluation on the element. */ public header inline fun > Iterable.filterIndexedTo(destination: C, predicate: (Int, T) -> Boolean): C /** * Returns a list containing all elements that are instances of specified type parameter R. */ public header inline fun Iterable<*>.filterIsInstance(): List<@kotlin.internal.NoInfer R> /** * Appends all elements that are instances of specified type parameter R to the given [destination]. */ public header inline fun > Iterable<*>.filterIsInstanceTo(destination: C): C /** * Returns a list containing all elements not matching the given [predicate]. */ public header inline fun Iterable.filterNot(predicate: (T) -> Boolean): List /** * Returns a list containing all elements that are not `null`. */ public header fun Iterable.filterNotNull(): List /** * Appends all elements that are not `null` to the given [destination]. */ public header fun , T : Any> Iterable.filterNotNullTo(destination: C): C /** * Appends all elements not matching the given [predicate] to the given [destination]. */ public header inline fun > Iterable.filterNotTo(destination: C, predicate: (T) -> Boolean): C /** * Appends all elements matching the given [predicate] to the given [destination]. */ public header inline fun > Iterable.filterTo(destination: C, predicate: (T) -> Boolean): C /** * Returns a list containing elements at indices in the specified [indices] range. */ public header fun List.slice(indices: IntRange): List /** * Returns a list containing elements at specified [indices]. */ public header fun List.slice(indices: Iterable): List /** * Returns a list containing first [n] elements. */ public header fun Iterable.take(n: Int): List /** * Returns a list containing last [n] elements. */ public header fun List.takeLast(n: Int): List /** * Returns a list containing last elements satisfying the given [predicate]. */ public header inline fun List.takeLastWhile(predicate: (T) -> Boolean): List /** * Returns a list containing first elements satisfying the given [predicate]. */ public header inline fun Iterable.takeWhile(predicate: (T) -> Boolean): List /** * Reverses elements in the list in-place. */ public header fun MutableList.reverse(): Unit /** * Returns a list with elements in reversed order. */ public header fun Iterable.reversed(): List /** * Sorts elements in the list in-place according to natural sort order of the value returned by specified [selector] function. */ public header inline fun > MutableList.sortBy(crossinline selector: (T) -> R?): Unit /** * Sorts elements in the list in-place descending according to natural sort order of the value returned by specified [selector] function. */ public header inline fun > MutableList.sortByDescending(crossinline selector: (T) -> R?): Unit /** * Sorts elements in the list in-place descending according to their natural sort order. */ public header fun > MutableList.sortDescending(): Unit /** * Returns a list of all elements sorted according to their natural sort order. */ public header fun > Iterable.sorted(): List /** * Returns a list of all elements sorted according to natural sort order of the value returned by specified [selector] function. */ public header inline fun > Iterable.sortedBy(crossinline selector: (T) -> R?): List /** * Returns a list of all elements sorted descending according to natural sort order of the value returned by specified [selector] function. */ public header inline fun > Iterable.sortedByDescending(crossinline selector: (T) -> R?): List /** * Returns a list of all elements sorted descending according to their natural sort order. */ public header fun > Iterable.sortedDescending(): List /** * Returns a list of all elements sorted according to the specified [comparator]. */ public header fun Iterable.sortedWith(comparator: Comparator): List /** * Returns an array of Boolean containing all of the elements of this collection. */ public header fun Collection.toBooleanArray(): BooleanArray /** * Returns an array of Byte containing all of the elements of this collection. */ public header fun Collection.toByteArray(): ByteArray /** * Returns an array of Char containing all of the elements of this collection. */ public header fun Collection.toCharArray(): CharArray /** * Returns an array of Double containing all of the elements of this collection. */ public header fun Collection.toDoubleArray(): DoubleArray /** * Returns an array of Float containing all of the elements of this collection. */ public header fun Collection.toFloatArray(): FloatArray /** * Returns an array of Int containing all of the elements of this collection. */ public header fun Collection.toIntArray(): IntArray /** * Returns an array of Long containing all of the elements of this collection. */ public header fun Collection.toLongArray(): LongArray /** * Returns an array of Short containing all of the elements of this collection. */ public header fun Collection.toShortArray(): ShortArray /** * Returns a [Map] containing key-value pairs provided by [transform] function * applied to elements of the given collection. * * If any of two pairs would have the same key the last one gets added to the map. * * The returned map preserves the entry iteration order of the original collection. */ public header inline fun Iterable.associate(transform: (T) -> Pair): Map /** * Returns a [Map] containing the elements from the given collection indexed by the key * returned from [keySelector] function applied to each element. * * If any two elements would have the same key returned by [keySelector] the last one gets added to the map. * * The returned map preserves the entry iteration order of the original collection. */ public header inline fun Iterable.associateBy(keySelector: (T) -> K): Map /** * Returns a [Map] containing the values provided by [valueTransform] and indexed by [keySelector] functions applied to elements of the given collection. * * If any two elements would have the same key returned by [keySelector] the last one gets added to the map. * * The returned map preserves the entry iteration order of the original collection. */ public header inline fun Iterable.associateBy(keySelector: (T) -> K, valueTransform: (T) -> V): Map /** * 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. * * If any two elements would have the same key returned by [keySelector] the last one gets added to the map. */ public header inline fun > Iterable.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. * * If any two elements would have the same key returned by [keySelector] the last one gets added to the map. */ public header inline fun > Iterable.associateByTo(destination: M, keySelector: (T) -> K, valueTransform: (T) -> V): M /** * Populates and returns the [destination] mutable map with key-value pairs * provided by [transform] function applied to each element of the given collection. * * If any of two pairs would have the same key the last one gets added to the map. */ public header inline fun > Iterable.associateTo(destination: M, transform: (T) -> Pair): M /** * Appends all elements to the given [destination] collection. */ public header fun > Iterable.toCollection(destination: C): C /** * Returns a [HashSet] of all elements. */ public header fun Iterable.toHashSet(): HashSet /** * Returns a [List] containing all elements. */ public header fun Iterable.toList(): List /** * Returns a [MutableList] filled with all elements of this collection. */ public header fun Iterable.toMutableList(): MutableList /** * Returns a [MutableList] filled with all elements of this collection. */ public header fun Collection.toMutableList(): MutableList /** * Returns a [Set] of all elements. * * The returned set preserves the element iteration order of the original collection. */ public header fun Iterable.toSet(): Set /** * Returns a single list of all elements yielded from results of [transform] function being invoked on each element of original collection. */ public header inline fun Iterable.flatMap(transform: (T) -> Iterable): List /** * Appends all elements yielded from results of [transform] function being invoked on each element of original collection, to the given [destination]. */ public header inline fun > Iterable.flatMapTo(destination: C, transform: (T) -> Iterable): C /** * 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. * * The returned map preserves the entry iteration order of the keys produced from the original collection. * * @sample samples.collections.Collections.Transformations.groupBy */ public header inline fun Iterable.groupBy(keySelector: (T) -> K): Map> /** * 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. * * The returned map preserves the entry iteration order of the keys produced from the original collection. * * @sample samples.collections.Collections.Transformations.groupByKeysAndValues */ public header inline fun Iterable.groupBy(keySelector: (T) -> K, valueTransform: (T) -> V): Map> /** * 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. * * @return The [destination] map. * * @sample samples.collections.Collections.Transformations.groupBy */ public header inline fun >> Iterable.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. * * @return The [destination] map. * * @sample samples.collections.Collections.Transformations.groupByKeysAndValues */ public header inline fun >> Iterable.groupByTo(destination: M, keySelector: (T) -> K, valueTransform: (T) -> V): M /** * 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. */ @SinceKotlin("1.1") public header inline fun Iterable.groupingBy(crossinline keySelector: (T) -> K): Grouping /** * Returns a list containing the results of applying the given [transform] function * to each element in the original collection. */ @Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE") public header inline fun Iterable.map(transform: (T) -> R): List /** * Returns a list containing the results of applying the given [transform] function * to each element and its index in the original collection. * @param [transform] function that takes the index of an element and the element itself * and returns the result of the transform applied to the element. */ @Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE") public header inline fun Iterable.mapIndexed(transform: (Int, T) -> R): List /** * 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. * @param [transform] function that takes the index of an element and the element itself * and returns the result of the transform applied to the element. */ public header inline fun Iterable.mapIndexedNotNull(transform: (Int, T) -> R?): List /** * 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]. * @param [transform] function that takes the index of an element and the element itself * and returns the result of the transform applied to the element. */ public header inline fun > Iterable.mapIndexedNotNullTo(destination: C, transform: (Int, T) -> 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]. * @param [transform] function that takes the index of an element and the element itself * and returns the result of the transform applied to the element. */ public header inline fun > Iterable.mapIndexedTo(destination: C, transform: (Int, T) -> R): C /** * Returns a list containing only the non-null results of applying the given [transform] function * to each element in the original collection. */ public header inline fun Iterable.mapNotNull(transform: (T) -> R?): List /** * Applies the given [transform] function to each element in the original collection * and appends only the non-null results to the given [destination]. */ public header inline fun > Iterable.mapNotNullTo(destination: C, transform: (T) -> R?): C /** * Applies the given [transform] function to each element of the original collection * and appends the results to the given [destination]. */ public header inline fun > Iterable.mapTo(destination: C, transform: (T) -> R): C /** * Returns a lazy [Iterable] of [IndexedValue] for each element of the original collection. */ public header fun Iterable.withIndex(): Iterable> /** * Returns a list containing only distinct elements from the given collection. * * The elements in the resulting list are in the same order as they were in the source collection. */ public header fun Iterable.distinct(): List /** * Returns a list containing only elements from the given collection * having distinct keys returned by the given [selector] function. * * The elements in the resulting list are in the same order as they were in the source collection. */ public header inline fun Iterable.distinctBy(selector: (T) -> K): List /** * Returns a set containing all elements that are contained by both this set and the specified collection. * * The returned set preserves the element iteration order of the original collection. */ public header infix fun Iterable.intersect(other: Iterable): Set /** * Returns a set containing all elements that are contained by this collection and not contained by the specified collection. * * The returned set preserves the element iteration order of the original collection. */ public header infix fun Iterable.subtract(other: Iterable): Set /** * Returns a mutable set containing all distinct elements from the given collection. * * The returned set preserves the element iteration order of the original collection. */ public header fun Iterable.toMutableSet(): MutableSet /** * Returns a set containing all distinct elements from both collections. * * The returned set preserves the element iteration order of the original collection. * Those elements of the [other] collection that are unique are iterated in the end * in the order of the [other] collection. */ public header infix fun Iterable.union(other: Iterable): Set /** * Returns `true` if all elements match the given [predicate]. */ public header inline fun Iterable.all(predicate: (T) -> Boolean): Boolean /** * Returns `true` if collection has at least one element. */ public header fun Iterable.any(): Boolean /** * Returns `true` if at least one element matches the given [predicate]. */ public header inline fun Iterable.any(predicate: (T) -> Boolean): Boolean /** * Returns the number of elements in this collection. */ public header fun Iterable.count(): Int /** * Returns the number of elements in this collection. */ @kotlin.internal.InlineOnly public header inline fun Collection.count(): Int /** * Returns the number of elements matching the given [predicate]. */ public header inline fun Iterable.count(predicate: (T) -> Boolean): Int /** * Accumulates value starting with [initial] value and applying [operation] from left to right to current accumulator value and each element. */ public header inline fun Iterable.fold(initial: R, operation: (R, T) -> 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. * @param [operation] function that takes the index of an element, current accumulator value * and the element itself, and calculates the next accumulator value. */ public header inline fun Iterable.foldIndexed(initial: R, operation: (Int, R, T) -> R): R /** * Accumulates value starting with [initial] value and applying [operation] from right to left to each element and current accumulator value. */ public header inline fun List.foldRight(initial: R, operation: (T, R) -> R): R /** * Accumulates value starting with [initial] value and applying [operation] from right to left * to each element with its index in the original list and current accumulator value. * @param [operation] function that takes the index of an element, the element itself * and current accumulator value, and calculates the next accumulator value. */ public header inline fun List.foldRightIndexed(initial: R, operation: (Int, T, R) -> R): R /** * Performs the given [action] on each element. */ @kotlin.internal.HidesMembers public header inline fun Iterable.forEach(action: (T) -> Unit): Unit /** * Performs the given [action] on each element, providing sequential index with the element. * @param [action] function that takes the index of an element and the element itself * and performs the desired action on the element. */ public header inline fun Iterable.forEachIndexed(action: (Int, T) -> Unit): Unit /** * Returns the largest element or `null` if there are no elements. * * If any of elements is `NaN` returns `NaN`. */ @SinceKotlin("1.1") public header fun Iterable.max(): Double? /** * Returns the largest element or `null` if there are no elements. * * If any of elements is `NaN` returns `NaN`. */ @SinceKotlin("1.1") public header fun Iterable.max(): Float? /** * Returns the largest element or `null` if there are no elements. */ public header fun > Iterable.max(): T? /** * Returns the first element yielding the largest value of the given function or `null` if there are no elements. */ public header inline fun > Iterable.maxBy(selector: (T) -> R): T? /** * Returns the first element having the largest value according to the provided [comparator] or `null` if there are no elements. */ public header fun Iterable.maxWith(comparator: Comparator): T? /** * Returns the smallest element or `null` if there are no elements. * * If any of elements is `NaN` returns `NaN`. */ @SinceKotlin("1.1") public header fun Iterable.min(): Double? /** * Returns the smallest element or `null` if there are no elements. * * If any of elements is `NaN` returns `NaN`. */ @SinceKotlin("1.1") public header fun Iterable.min(): Float? /** * Returns the smallest element or `null` if there are no elements. */ public header fun > Iterable.min(): T? /** * Returns the first element yielding the smallest value of the given function or `null` if there are no elements. */ public header inline fun > Iterable.minBy(selector: (T) -> R): T? /** * Returns the first element having the smallest value according to the provided [comparator] or `null` if there are no elements. */ public header fun Iterable.minWith(comparator: Comparator): T? /** * Returns `true` if the collection has no elements. */ public header fun Iterable.none(): Boolean /** * Returns `true` if no elements match the given [predicate]. */ public header inline fun Iterable.none(predicate: (T) -> Boolean): Boolean /** * Performs the given [action] on each element and returns the collection itself afterwards. */ @SinceKotlin("1.1") public header inline fun > C.onEach(action: (T) -> Unit): C /** * Accumulates value starting with the first element and applying [operation] from left to right to current accumulator value and each element. */ public header inline fun Iterable.reduce(operation: (S, T) -> S): S /** * 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. * @param [operation] function that takes the index of an element, current accumulator value * and the element itself and calculates the next accumulator value. */ public header inline fun Iterable.reduceIndexed(operation: (Int, S, T) -> S): S /** * Accumulates value starting with last element and applying [operation] from right to left to each element and current accumulator value. */ public header inline fun List.reduceRight(operation: (T, S) -> S): S /** * Accumulates value starting with last element and applying [operation] from right to left * to each element with its index in the original list and current accumulator value. * @param [operation] function that takes the index of an element, the element itself * and current accumulator value, and calculates the next accumulator value. */ public header inline fun List.reduceRightIndexed(operation: (Int, T, S) -> S): S /** * Returns the sum of all values produced by [selector] function applied to each element in the collection. */ public header inline fun Iterable.sumBy(selector: (T) -> Int): Int /** * Returns the sum of all values produced by [selector] function applied to each element in the collection. */ public header inline fun Iterable.sumByDouble(selector: (T) -> Double): Double /** * Returns an original collection containing all the non-`null` elements, throwing an [IllegalArgumentException] if there are any `null` elements. */ public header fun Iterable.requireNoNulls(): Iterable /** * Returns an original collection containing all the non-`null` elements, throwing an [IllegalArgumentException] if there are any `null` elements. */ public header fun List.requireNoNulls(): List /** * Returns a list containing all elements of the original collection without the first occurrence of the given [element]. */ public header operator fun Iterable.minus(element: T): List /** * Returns a list containing all elements of the original collection except the elements contained in the given [elements] array. */ public header operator fun Iterable.minus(elements: Array): List /** * Returns a list containing all elements of the original collection except the elements contained in the given [elements] collection. */ public header operator fun Iterable.minus(elements: Iterable): List /** * Returns a list containing all elements of the original collection except the elements contained in the given [elements] sequence. */ public header operator fun Iterable.minus(elements: Sequence): List /** * Returns a list containing all elements of the original collection without the first occurrence of the given [element]. */ @kotlin.internal.InlineOnly public header inline fun Iterable.minusElement(element: T): List /** * 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`. */ public header inline fun Iterable.partition(predicate: (T) -> Boolean): Pair, List> /** * Returns a list containing all elements of the original collection and then the given [element]. */ public header operator fun Iterable.plus(element: T): List /** * Returns a list containing all elements of the original collection and then the given [element]. */ public header operator fun Collection.plus(element: T): List /** * Returns a list containing all elements of the original collection and then all elements of the given [elements] array. */ public header operator fun Iterable.plus(elements: Array): List /** * Returns a list containing all elements of the original collection and then all elements of the given [elements] array. */ public header operator fun Collection.plus(elements: Array): List /** * Returns a list containing all elements of the original collection and then all elements of the given [elements] collection. */ public header operator fun Iterable.plus(elements: Iterable): List /** * Returns a list containing all elements of the original collection and then all elements of the given [elements] collection. */ public header operator fun Collection.plus(elements: Iterable): List /** * Returns a list containing all elements of the original collection and then all elements of the given [elements] sequence. */ public header operator fun Iterable.plus(elements: Sequence): List /** * Returns a list containing all elements of the original collection and then all elements of the given [elements] sequence. */ public header operator fun Collection.plus(elements: Sequence): List /** * Returns a list containing all elements of the original collection and then the given [element]. */ @kotlin.internal.InlineOnly public header inline fun Iterable.plusElement(element: T): List /** * Returns a list containing all elements of the original collection and then the given [element]. */ @kotlin.internal.InlineOnly public header inline fun Collection.plusElement(element: T): List /** * Returns a list of pairs built from elements of both collections with same indexes. List has length of shortest collection. */ public header infix fun Iterable.zip(other: Array): List> /** * Returns a list of values built from elements of both collections with same indexes using provided [transform]. List has length of shortest collection. */ public header inline fun Iterable.zip(other: Array, transform: (T, R) -> V): List /** * Returns a list of pairs built from elements of both collections with same indexes. List has length of shortest collection. */ public header infix fun Iterable.zip(other: Iterable): List> /** * Returns a list of values built from elements of both collections with same indexes using provided [transform]. List has length of shortest collection. */ public header inline fun Iterable.zip(other: Iterable, transform: (T, R) -> V): List /** * Appends the string from all the elements separated using [separator] and using the given [prefix] and [postfix] if supplied. * * If the collection could be huge, you can specify a non-negative value of [limit], in which case only the first [limit] * elements will be appended, followed by the [truncated] string (which defaults to "..."). */ public fun Iterable.joinTo(buffer: A, separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: ((T) -> CharSequence)? = null): A { buffer.append(prefix) var count = 0 for (element in this) { if (++count > 1) buffer.append(separator) if (limit < 0 || count <= limit) { buffer.appendElement(element, transform) } else break } if (limit >= 0 && count > limit) buffer.append(truncated) buffer.append(postfix) return buffer } /** * Creates a string from all the elements separated using [separator] and using the given [prefix] and [postfix] if supplied. * * If the collection could be huge, you can specify a non-negative value of [limit], in which case only the first [limit] * elements will be appended, followed by the [truncated] string (which defaults to "..."). */ public fun Iterable.joinToString(separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: ((T) -> CharSequence)? = null): String { return joinTo(StringBuilder(), separator, prefix, postfix, limit, truncated, transform).toString() } /** * Returns this collection as an [Iterable]. */ @kotlin.internal.InlineOnly public header inline fun Iterable.asIterable(): Iterable /** * Creates a [Sequence] instance that wraps the original collection returning its elements when being iterated. */ public header fun Iterable.asSequence(): Sequence /** * Returns an average value of elements in the collection. */ @kotlin.jvm.JvmName("averageOfByte") public header fun Iterable.average(): Double /** * Returns an average value of elements in the collection. */ @kotlin.jvm.JvmName("averageOfShort") public header fun Iterable.average(): Double /** * Returns an average value of elements in the collection. */ @kotlin.jvm.JvmName("averageOfInt") public header fun Iterable.average(): Double /** * Returns an average value of elements in the collection. */ @kotlin.jvm.JvmName("averageOfLong") public header fun Iterable.average(): Double /** * Returns an average value of elements in the collection. */ @kotlin.jvm.JvmName("averageOfFloat") public header fun Iterable.average(): Double /** * Returns an average value of elements in the collection. */ @kotlin.jvm.JvmName("averageOfDouble") public header fun Iterable.average(): Double /** * Returns the sum of all elements in the collection. */ @kotlin.jvm.JvmName("sumOfByte") public header fun Iterable.sum(): Int /** * Returns the sum of all elements in the collection. */ @kotlin.jvm.JvmName("sumOfShort") public header fun Iterable.sum(): Int /** * Returns the sum of all elements in the collection. */ @kotlin.jvm.JvmName("sumOfInt") public header fun Iterable.sum(): Int /** * Returns the sum of all elements in the collection. */ @kotlin.jvm.JvmName("sumOfLong") public header fun Iterable.sum(): Long /** * Returns the sum of all elements in the collection. */ @kotlin.jvm.JvmName("sumOfFloat") public header fun Iterable.sum(): Float /** * Returns the sum of all elements in the collection. */ @kotlin.jvm.JvmName("sumOfDouble") public header fun Iterable.sum(): Double