Crate ordered_zip
Source - Greedy
- A strategy which makes
Zip
greedily consume both iterators
even beyond the point where one returns None
(until both return None
). - NonGreedy
- A strategy which makes
Zip
nongreedily consume both iterators
up to the point where one returns None
. - Zip
- An iterator that iterates two other iterators simultaneously, prioritized by pairwise ordering.
- Step
- An enum used by
Strategy
for signalling
Zip
the next desired iteration step to take.
- Compare
- Ordering logic provided to
Zip
via Strategy
. - IntoOrderedZip
- Trait used for adding
ordered_zip()
function to
Iterator
. - Strategy
- A strategy which greedily consumes both iterators
up to the point where one returns
None
.