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