the sequence to which the new methods are provided
Returns a subsequence of this sequence based on a percentage of the total number of elements.
Returns a subsequence of this sequence based on a percentage of the total number of elements.
the percentage of elements of this sequence that the returned sequence must contain
a subsequence of this sequence based on a percentage of the total number of elements.
(Since version 2017/07/13) This will be removed in a future version
Partitions this sequence into a given number of subsequences.
Partitions this sequence into a given number of subsequences. It is
guaranteed that the sequence is split into subsquences as even as
possible; if the split is uneven, the first this.length % n
subsequences contain one more element than the remaining ones.
the number of subsequences into which this sequence must be split
a new sequence of n
subsequences of this sequence.
(Since version 2017/07/13) This will be removed in a future version
Returns a set containing the n largest elements of this sequence
Returns a set containing the n largest elements of this sequence
number of elements to extract
element ordering
an unordered sequence of the n largest elements
(Since version 2017/07/13) This will be removed in a future version
Returns a set containing the n smallest elements of this sequence
Returns a set containing the n smallest elements of this sequence
number of elements to extract
element ordering
an unordered sequence of the n smallest elements
(Since version 2017/07/13) This will be removed in a future version
Implicit class that provides new methods for sequences.