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 set for which the function is defined.
Returns the applications of a partial function to each element in this set 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 set following a prefix up to some length.
Returns all elements in this set 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 accumulator for non-dropped elements.
all but the first lower
accumulated elements.
Returns all elements following the longest prefix of this set for which each element satisfies a predicate.
Returns all elements following the longest prefix of this set 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 set that satisfy a predicate.
Returns all elements in this set 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 set.
Returns the concatenation of all elements returned by a function applied to each element in this set.
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 set.
Returns the applications of a function to each element in this set.
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 set.
Returns an interval of elements in this set.
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 set up to some length.
Returns a prefix of this set 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 set for which each element satisfies a predicate.
Returns the longest prefix of this set 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 set that satisfy a predicate.
Returns a view of all elements in this set that satisfy a predicate.
the predicate to lazily test elements against.
a non-strict view of the filtered elements.
Strictly evaluated set operations.