๐
core
An iterator that links two iterators together, in a chain.
๐
core
An iterator that clones the elements of an underlying iterator.
๐
core
An iterator that copies the elements of an underlying iterator.
๐
core
An iterator that repeats endlessly.
๐
core
An iterator that yields nothing.
๐
core
An iterator that yields the current count and the element during iteration.
๐
core
An iterator that filters the elements of iter
with predicate
.
๐
core
An iterator that uses f
to both filter and map elements from iter
.
๐
core
An iterator that maps each element to an iterator, and yields their elements.
๐
core
An iterator that flattens one level of nesting in an iterator of iterables.
๐
core
An iterator where each iteration calls a closure F: FnMut() -> Option<T>
.
๐
core
An iterator that yields None
forever after the underlying yields None
once.
๐
core
An iterator that calls a fn with a reference to each element before yielding it.
๐
core
An iterator that maps the values of iter with f
.
๐
core
An iterator that only accepts elements while predicate
returns Some(_)
.
๐
core
An iterator that yields an element exactly once.
๐
core
An iterator that yields a single element A
by calling F: FnOnce() -> A
.
๐
core
An iterator with a peek()
that returns an optional ref to the next element.
๐
core
An iterator that repeats an element endlessly.
๐
core
An iterator that endlessly repeats A
by calling F: FnMut() -> A
.
๐
core
A double-ended iterator with the direction inverted.
๐
core
An iterator to maintain state while iterating another iterator.
๐
core
An iterator that skips over n
elements of iter
.
๐
core
An iterator that rejects elements while predicate
returns true
.
๐
core
An iterator for stepping iterators by a custom amount.
๐
core
An iterator where each successive item is computed based on the preceding one.
๐
core
An iterator that only iterates over the first n
iterations of iter
.
๐
core
An iterator that only accepts elements while predicate
returns true
.
๐
core
An iterator that iterates two other iterators simultaneously.