Returns the concatenation of this and another collection.
Returns the concatenation of this and another collection.
the elements to append to these elements.
the implicit accumulator for concatenated elements.
the accumulated elements of both collections.
Returns the applications of a partial function to each element in this sequence for which the function is defined.
Returns the applications of a partial function to each element in this sequence for which the function is defined.
the partial function to filter and transform elements.
the implicit accumulator for collected elements.
the accumulated elements filtered and transformed by q
.
Returns all elements in this sequence following a prefix up to some length.
Returns all elements in this sequence following a prefix up to some length.
the length of the prefix to drop; also the inclusive lower bound for indexes of elements to keep.
the implicit accumulator for non-dropped elements.
all but the first lower
accumulated elements.
Returns all elements following the longest prefix of this sequence for which each element satisfies a predicate.
Returns all elements following the longest prefix of this sequence for which each element satisfies a predicate.
the predicate to test elements against.
the implicit accumulator for non-dropped elements.
the suffix of accumulated elements beginning with the first
element to not satisfy p
.
Returns all elements in this sequence that satisfy a predicate.
Returns all elements in this sequence that satisfy a predicate.
the predicate to test elements against.
the implicit accumulator for filtered elements.
the accumulated elements filtered by p
.
Returns the concatenation of all elements returned by a function applied to each element in this sequence.
Returns the concatenation of all elements returned by a function applied to each element in this sequence.
the enumerator-yielding function to apply to each element.
the implicit accumulator for flattened elements.
the concatenation of all accumulated elements produced by f
.
Returns the applications of a function to each element in this sequence.
Returns the applications of a function to each element in this sequence.
the function to apply to each element.
the implicit accumulator for transformed elements.
the accumulated elements transformed by f
.
Returns the reverse of this sequence.
Returns the reverse of this sequence.
the implicit accumulator for reversed elements.
the elements in this sequence in reverse order.
Returns an interval of elements in this sequence.
Returns an interval of elements in this sequence.
the inclusive lower bound for indexes of elements to keep.
the exclusive upper bound for indexes of elements to keep.
the implicit accumulator for kept elements.
the accumulated elements with indexes greater than or equal to
lower
and less than upper
.
Returns a prefix of this sequence up to some length.
Returns a prefix of this sequence up to some length.
the length of the prefix to take; also the exclusive upper bound for indexes of elements to keep.
the implicit accumulator for taken elements.
up to the first upper
accumulated elements.
Returns the longest prefix of this sequence for which each element satisfies a predicate.
Returns the longest prefix of this sequence for which each element satisfies a predicate.
the predicate to test elements against.
the implicit accumulator for taken elements.
the longest prefix of accumulated elements preceding the first
element to not satisfy p
.
Returns a view of all elements in this sequence that satisfy a predicate.
Returns a view of all elements in this sequence that satisfy a predicate.
the predicate to lazily test elements against.
a non-strict view of the filtered elements.
Returns pairs of elements from this and another sequence.
Returns pairs of elements from this and another sequence.
the sequence whose elements to pair with these elements.
the implicit accumulator for paired elements.
the accumulated pairs of corresponding elements.
Strictly evaluated indexed sequence operations.