Returns a view concatenating this and another sequence.
Returns a view concatenating this and another sequence.
the elements to append to these elements.
a non-strict view of the concatenated elements.
Returns a view that applies a partial function to each element in this sequence for which the function is defined.
Returns a view that applies a partial function to each element in this sequence for which the function is defined.
the partial function to lazily filter and map elements.
a non-strict view of the filtered and mapped elements.
Returns a view of all elements in this sequence following a prefix up to some length.
Returns a view of all elements in this sequence 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 sequence for which each element satisfies a predicate.
Returns a view of all elements following the longest prefix of this sequence 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 sequence that satisfy a predicate.
Returns a view of all elements in this sequence that satisfy a predicate.
the predicate to lazily test elements against.
a non-strict view of the filtered elements.
Returns a view that applies a function to each element in this sequence.
Returns a view that applies a function to each element in this sequence.
the function to lazily apply to each element.
a non-strict view of the mapped elements.
Returns a view of the reverse of this sequence.
Returns a view of the reverse of this sequence.
a non-strict view of the elements in this sequence in reverse order.
Returns a view of an interval of elements in this sequence.
Returns a view of an interval of elements in this sequence.
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 sequence up to some length.
Returns a view of a prefix of this sequence 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 sequence for which each element satisfies a predicate.
Returns a view of the longest prefix of this sequence 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 sequence that satisfy a predicate.
Returns a view of all elements in this sequence that satisfy a predicate.
the predicate to lazily test elements against.
a non-strict view of the filtered elements.
Returns a view of pairs of elemnts from this and another sequence.
Returns a view of pairs of elemnts from this and another sequence.
the sequence whose elements to lazily pair with these elements.
a non-strict view of the pairs of corresponding elements.
Non-strictly evaluated indexed sequence operations.