[][src]Module core_extensions::iterators

Iterator adaptors and constructors.

Structs

IterCloner

Constructs an Iterator by cloning the one it references,if the Iterator is Clone.

IterConstructor

Constructs Iterators using a closure.

LazyOnce

Iterator,lazy version of [::std::iter::Once],only evaluating the item when Iterator::next is called.

Loop

Iterator that infinitelly produces a value by calling an impl FnMut()->T.

ReplaceNth

An Iterator that replaces the nth element with another value.

Traits

IteratorExt

Extension trait for Iterator implementors.