Module standback::iter[][src]

Structs

Copied

An iterator that copies the elements of an underlying iterator.

OnceWith

An iterator that yields a single element of type A by applying the provided closure F: FnOnce() -> A.

Functions

from_fn

Creates a new iterator where each iteration calls the provided closure F: FnMut() -> Option<T>.

once_with

Creates an iterator that lazily generates a value exactly once by invoking the provided closure.

successors

Creates a new iterator where each successive item is computed based on the preceding one.