Crate iter_seq
Source - 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.
- 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. - ConstLen
- A
Sequence that is guaranteed to yield exactly N elements. - 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.
- const_repeat
- Creates a new sequence that indefinitely yields empty tuples.