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 collection for which the function is defined.
Returns the applications of a partial function to each element in this collection 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 collection following a prefix up to some length.
Returns all elements in this collection 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 collection for which each element satisfies a predicate.
Returns all elements following the longest prefix of this collection 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 collection that satisfy a predicate.
Returns all elements in this collection 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 collection.
Returns the concatenation of all elements returned by a function applied to each element in this collection.
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 collection.
Returns the applications of a function to each element in this collection.
the function to apply to each element.
the implicit accumulator for transformed elements.
the accumulated elements transformed by f
.
Returns an interval of elements in this collection.
Returns an interval of elements in this collection.
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, suffix) pair with the prefix being the longest one for which each element satisfies a predicate, and the suffix beginning with the first element to not satisfy the predicate.
Returns a (prefix, suffix) pair with the prefix being the longest one for which each element satisfies a predicate, and the suffix beginning with the first element to not satisfy the predicate.
the predicate to test elements against.
the implicit accumulator for prefix elements.
the implicit accumilator for suffix elements.
the pair of accumulated prefix and suffix elements.
Returns a prefix of this collection up to some length.
Returns a prefix of this collection 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 collection for which each element satisfies a predicate.
Returns the longest prefix of this collection 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 collection that satisfy a predicate.
Returns a view of all elements in this collection that satisfy a predicate.
the predicate to lazily test elements against.
a non-strict view of the filtered elements.
Strictly evaluated collection operations.