Lazy and immutable slice of a sequence of values.
Lazy and immutable slice of a sequence of values.
- Type Params
- T
type of the items of the sequence.
- Note
As the slice usually wraps over a mutable structure, like an array or a java buffer, and it DOES NOT make an instant copy, any changes to the underlying source will directly affect the slice output unless detached. Detach is a one-time copy operation, and
detached
property is preserved across all operations returning a Slice.- Companion
- object
Document{}
Update a value at the given index. Creates a copy of an underlying data.
Update a value at the given index. Creates a copy of an underlying data.
Returns true if Slice has values, otherwise false.
Returns true if Slice has values, otherwise false.
Returns true if Slice has values, otherwise false.
Returns true if Slice has values, otherwise false.
Lazily composes mapping function and returns new Slice. Does not modify nor copy underlying array.
Lazily composes mapping function and returns new Slice. Does not modify nor copy underlying array.
Folds from left to right all elements, starting with initial.
Folds from left to right all elements, starting with initial.
Folds from right to left all elements, starting with initial.
Folds from right to left all elements, starting with initial.
Combines from left to right all elements, starting with initial.
Combines from left to right all elements, starting with initial.
Lazily narrows Slice to exclude first N items.
Lazily narrows Slice to exclude first N items.
Returns iterator over Slice values fulfilling the predicate.
Returns iterator over Slice values fulfilling the predicate.
Returns iterator over Slice indexes of values fulfilling the predicate.
Returns iterator over Slice indexes of values fulfilling the predicate.
Returns iterator over Slice values in the reverse order.
Returns iterator over Slice values in the reverse order.
Returns iterator over Slice values fulfilling the predicate, in the reverse order.
Returns iterator over Slice values fulfilling the predicate, in the reverse order.
Returns iterator over Slice indexes of values fulfilling the predicate, in the reverse order.
Returns iterator over Slice indexes of values fulfilling the predicate, in the reverse order.
Detaches a slice creating a trimmed copy of an underlying data, if needed. Subsequent detach operations will return the same instance without making new copies.
Detaches a slice creating a trimmed copy of an underlying data, if needed. Subsequent detach operations will return the same instance without making new copies.
Dumps content to the array, starting from an index.
Dumps content to the array, starting from an index.
Value members
Concrete methods
Returns true if any value fulfills the predicate, or false.
Returns true if any value fulfills the predicate, or false.
Returns Some of the first value fulfilling the predicate, or None.
Returns Some of the first value fulfilling the predicate, or None.