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 container for which the function is defined.
Returns the applications of a partial function to each element in this container 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 container following a prefix up to some length.
Returns all elements in this container 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 container for which each element satisfies a predicate.
Returns all elements following the longest prefix of this container 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 container that satisfy a predicate.
Returns all elements in this container 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 container.
Returns the concatenation of all elements returned by a function applied to each element in this container.
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 container.
Returns the applications of a function to each element in this container.
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 container.
Returns an interval of elements in this container.
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 container up to some length.
Returns a prefix of this container 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 container for which each element satisfies a predicate.
Returns the longest prefix of this container 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 container that satisfy a predicate.
Returns a view of all elements in this container 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 container.
Returns pairs of elements from this and another container.
the container whose elements to pair with these elements.
the implicit accumulator for paired elements.
the accumulated pairs of corresponding elements.
Strictly evaluated container operations.