Returns a view of all entries in this map following a prefix up to some length.
Returns a view of 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 included entries.
a non-strict view of all but the first lower
entries.
Returns a view of all entries following the longest prefix of this map for which each entry satisfies a predicate.
Returns a view of all entries following the longest prefix of this map for which each entry satisfies a predicate.
the predicate to test entries against.
a non-strict view of the suffix of accumulated entries beginning
with 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.
Returns a view of an interval of entries in this map.
Returns a view of an interval of entries in this map.
the inclusive lower bound for indexes of included entries.
the exclusive upper bound for indexes of included entries.
a non-strict view of the entries with indexes greater than or
equal to lower
and less than upper
.
Returns a (prefix, suffix) pair of views with the prefix being the longest one for which each entry satisfies a predicate, and the suffix beginning with the first entry to not satisfy the predicate.
Returns a (prefix, suffix) pair of views with the prefix being the longest one for which each entry satisfies a predicate, and the suffix beginning with the first entry to not satisfy the predicate.
the predicate to test entries against.
the (predix, suffix) pair of non-strict views.
Returns a view of a prefix of this map up to some length.
Returns a view of a prefix of this map up to some length.
the length of the prefix to take; also the exclusive upper bound for indexes of included entries.
a non-strict view of up to the first upper
entries.
Returns a view of the longest prefix of this map for which each entry satisfies a predicate.
Returns a view of the longest prefix of this map for which each entry satisfies a predicate.
the predicate to test entries against.
a non-strict view of the longest prefix of 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.
Non-strictly evaluated map operations.