Returns a view concatenating this and another set.
Returns a view concatenating this and another set.
the elements to append to these elements.
a non-strict view of the concatenated elements.
Returns a view of all elements in this set following a prefix up to some length.
Returns a view of 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 included elements.
a non-strict view of all but the first lower
elements.
Returns a view of all elements following the longest prefix of this set for which each element satisfies a predicate.
Returns a view of all elements following the longest prefix of this set for which each element satisfies a predicate.
the predicate to test elements against.
a non-strict view of the suffix of accumulated elements beginning
with 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.
Returns a view of an interval of elements in this set.
Returns a view of an interval of elements in this set.
the inclusive lower bound for indexes of included elements.
the exclusive upper bound for indexes of included elements.
a non-strict view of the elements 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 element satisfies a predicate, and the suffix beginning with the first element to not satisfy the predicate.
Returns a (prefix, suffix) pair of views 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 (predix, suffix) pair of non-strict views.
Returns a view of a prefix of this set up to some length.
Returns a view of a prefix of this set up to some length.
the length of the prefix to take; also the exclusive upper bound for indexes of included elements.
a non-strict view of up to the first upper
elements.
Returns a view of the longest prefix of this set for which each element satisfies a predicate.
Returns a view of the longest prefix of this set for which each element satisfies a predicate.
the predicate to test elements against.
a non-strict view of the longest prefix of 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.
Non-strictly evaluated set operations.