Expand description
Module defining transformations among iterables.
Structs§
- An iterable created by chaining two iterables.
- An iterable collection created by chaining two iterable collections.
- An iterable whose iterators yield elements which are clones of references that a wrapped iterable yields.
- An iterable whose iterators yield elements which are copies of references that a wrapped iterable yields.
- Wraps an
Iterableand creates a newIterablewhich yields the element indices together with the elements. - Wraps an
Iterableand creates a newIterablewhich filters-and-maps the elements of the original iterable. - Wraps an
Iterableand creates a newIterablewhich yields elements of the original iterable filtered by a predicate. - Wraps an
Collectionand creates a newCollectionwhich yields elements of the original iterable filtered by a predicate. - Immutable iterator over the filtered iterable collection.
- Mutable iterator over the filtered iterable collection.
- Wraps an
Iterableand creates a newIterablewhich maps-and-flattens the elements of the original iterable. - Wraps an
Iterableand creates a newIterablewhich flattens the elements of the original iterable filtered by a predicate. - Wraps an
Collectionand creates a newCollectionwhich flattens the elements of the original iterable filtered by a predicate. - Wraps an
Iterableand transforms into a fusedIterable. - Wraps an
Collectionand transforms into a fusedCollection. - Wraps an
Iterableand creates a newIterablewhich maps the elements of the original iterable. - Wraps an
Iterableand creates a newIterablewhich maps the elements of the original iterable as long as the map-while condition is satisfied. - Wraps an
Iterableand creates a newIterablewhich yields the elements of the original iterable in reverse order. - Wraps an
Collectionand creates a newCollectionwhich yields the elements of the original iterable in reverse order. - Wraps an
Iterableand creates a newIterablewhich skips firstnthe elements of the original iterable. - Wraps an
Collectionand creates a newCollectionwhich skips firstnthe elements of the original iterable. - Wraps an
Iterableand creates a newIterablewhich skips the elements of the original iterable that satisfy a given predicate and yields the remaining. - Wraps an
Collectionand creates a newCollectionwhich skips the elements of the original iterable that satisfy a given predicate and yields the remaining. - Immutable iterator for skipped while iterable collection.
- Mutable iterator for skipped while iterable collection.
- Wraps an
Iterableand creates a newIterablewhich yields elements of the original iterable by stepping by a given step size. - Wraps an
Collectionand creates a newCollectionwhich yields elements of the original iterable by stepping by a given step size. - Wraps an
Iterableand creates a newIterablewhich yields only the firstnthe elements of the original iterable. - Wraps an
Collectionand creates a newCollectionwhich yields only the firstnthe elements of the original iterable. - Wraps an
Iterableand creates a newIterablewhich yields elements of the original iterable as long as a predicate is satisfied. - Wraps an
Collectionand creates a newCollectionwhich yields elements of the original iterable as long as a predicate is satisfied. - Immutable iterator for taken while iterable collections.
- Mutable iterator for taken while iterable collections.
- An iterable created by zipping two iterables.
Traits§
- Trait to transform types implementing
Iterator + Cloneinto anIterable.