Sequence (original) (raw)

A sequence that returns values through its iterator. The values are evaluated lazily, and the sequence is potentially infinite.

Sequences can be iterated multiple times, however some sequence implementations might constrain themselves to be iterated only once. That is mentioned specifically in their documentation (e.g. generateSequence overload). The latter sequences throw an exception on an attempt to iterate them the second time.

Sequence operations, like Sequence.map, Sequence.filter etc, generally preserve that property of a sequence, and again it's documented for an operation if it doesn't.

Since Kotlin

1.0

Parameters

T

the type of elements in the sequence.

Inheritors

Functions

Returns true if all elements match the given predicate.

Returns true if sequence has at least one element.

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

Creates an Iterable instance that wraps the original sequence returning its elements when being iterated.

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

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

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

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 sequence and value is the element itself.

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

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

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

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

Creates a sequential Stream instance that produces elements from the original sequence.

Returns an average value of elements in the sequence.

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

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

Returns a wrapper sequence that provides values of this sequence, but ensures it can be iterated only one time.

Returns true if element is found in the sequence.

Returns the number of elements in this sequence.

Returns the number of elements matching the given predicate.

Returns a sequence containing only distinct elements from the given sequence.

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

Returns a sequence containing all elements except first n elements.

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

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

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

Returns a sequence containing only elements matching the given predicate.

Returns a sequence containing only elements matching the given predicate.

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

Returns a sequence containing all elements that are instances of specified class.

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

Appends all elements that are instances of specified class to the given destination.

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

Returns a sequence containing all elements that are not null.

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

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

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

Returns the first element.

Returns the first element matching the given predicate.

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

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

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

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

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

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

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

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

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

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

Returns a sequence of all elements from all iterables in this sequence.

Returns a sequence of all elements from all sequences in this sequence.

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

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

Performs the given action on each element.

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

Groups elements of the original sequence by the key returned by the given keySelector function applied to each element and returns a map where each group key is associated with a list of corresponding elements.

Groups values returned by the valueTransform function applied to each element of the original sequence by the key returned by the given keySelector function applied to the element and returns a map where each group key is associated with a list of corresponding values.

Groups elements of the original sequence by the key returned by the given keySelector function applied to each element and puts to the destination map each group key associated with a list of corresponding elements.

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

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

Returns a sequence that iterates through the elements either of this sequence or, if this sequence turns out to be empty, of the sequence returned by defaultValue function.

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

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

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

Returns an Iterator that returns the values from the sequence.

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

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

Returns the last element.

Returns the last element matching the given predicate.

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

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

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

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

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

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

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

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

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

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

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

Returns the largest element.

Returns the first element yielding the largest value of the given selector function.

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

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

Returns the largest value among all values produced by selector function applied to each element in the sequence or null if the sequence is empty.

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

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the sequence or null if the sequence is empty.

Returns the largest element or null if the sequence is empty.

Returns the first element having the largest value according to the provided comparator.

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

Returns the smallest element.

Returns the first element yielding the smallest value of the given selector function.

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

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

Returns the smallest value among all values produced by selector function applied to each element in the sequence or null if the sequence is empty.

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

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the sequence or null if the sequence is empty.

Returns the smallest element or null if the sequence is empty.

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

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

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

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

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

Returns the first element having the smallest value according to the provided comparator.

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

Returns true if the sequence has no elements.

Returns true if no elements match the given predicate.

Returns a sequence which performs the given action on each element of the original sequence as they pass through it.

Returns a sequence which performs the given action on each element of the original sequence as they pass through it.

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

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

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

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

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

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

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

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

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

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

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

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

Returns a sequence containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with initial value.

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

Returns a sequence 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 sequence.

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

Returns a sequence containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with initial value.

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

Returns a sequence that yields elements of this sequence randomly shuffled.

Returns a sequence that yields elements of this sequence randomly shuffled using the specified random instance as the source of randomness.

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

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

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

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

Returns a sequence that yields elements of this sequence sorted according to their natural sort order.

Returns a sequence that yields elements of this sequence sorted according to natural sort order of the value returned by specified selector function.

Returns a sequence that yields elements of this sequence sorted descending according to natural sort order of the value returned by specified selector function.

Returns a sequence that yields elements of this sequence sorted descending according to their natural sort order.

Returns a sequence that yields elements of this sequence sorted according to the specified comparator.

Returns the sum of all elements in the sequence.

Returns the sum of all elements in the sequence.

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

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

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

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

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

Returns a sequence containing first n elements.

Returns a sequence containing first elements satisfying the given predicate.

Appends all elements to the given destination collection.

Returns a new HashSet of all elements.

Returns a List containing all elements.

Returns a new map containing all key-value pairs from the given sequence of pairs.

Populates and returns the destination mutable map with key-value pairs from the given sequence of pairs.

Returns a new MutableList filled with all elements of this sequence.

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

Returns a Set of all elements.

Returns a pair of lists, where first list is built from the first values of each pair from this sequence, second list is built from the second values of each pair from this sequence.

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

Returns a sequence 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 sequence with the given step.

Returns a sequence that wraps each element of the original sequence into an IndexedValue containing the index of that element and the element itself.

Returns a sequence of values built from the elements of this sequence and the other sequence with the same index. The resulting sequence ends as soon as the shortest input sequence ends.

Returns a sequence of values built from the elements of this sequence and the other sequence with the same index using the provided transform function applied to each pair of elements. The resulting sequence ends as soon as the shortest input sequence ends.

Returns a sequence of pairs of each two adjacent elements in this sequence.

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