Crate iter_seq

Source

Structs§

BorrowedIterSeq
A sequence created from an iterator over immutably borrowed values.
BorrowedMutIterSeq
A sequence created from an iterator over mutably borrowed values.
ConstRepeat
ConstTakeExact
Enumerate
A sequence that yields the current iteration index for every element.
IterSeq
A sequence created from an iterator.
Map
A sequence that transforms every element of the original sequence using f.

Traits§

AsSequence
Allowed borrowing self as a sequence of values owned by self.
AsSequenceMut
Allowed borrowing self mutably as a sequence of values owned by self.
ConstMaxLen
A Sequence that is guaranteed to yield at most N elements.
ConstMinLen
A Sequence that is guaranteed to yield at least N elements.
IntoSequence
Represents a type that can be converted into a sequence.
Sequence
Represents a stateless abstract sequence of values.

Functions§

const_repeat
Creates a new sequence that indefinitely yields empty tuples.