Skip to content

Commit 2ff677d

Browse files
committed
Weaken guarantee around advancing underlying iterators in zip
The current guarantee is too strong as it would prevent adapters from exploiting knowledge about the iterator length and using counted loops for example because they would stop calling `next()` before it ever returned `None`. Additionally several nested zip iterators already fail to uphold this. This doesn't remove any of the specialization code that tries (and sometimes fails) to uphold the guarantee for `next()` because removing it would also affect `next_back()` in more surprising ways.
1 parent ae90dcf commit 2ff677d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

library/core/src/iter/traits/iterator.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -457,8 +457,10 @@ pub trait Iterator {
457457
/// In other words, it zips two iterators together, into a single one.
458458
///
459459
/// If either iterator returns [`None`], [`next`] from the zipped iterator
460-
/// will return [`None`]. If the first iterator returns [`None`], `zip` will
461-
/// short-circuit and `next` will not be called on the second iterator.
460+
/// will return [`None`].
461+
/// If the zipped iterator has no more elements to return then each further attempt to advance
462+
/// it will first try to advance the first iterator at most one time and if it still yielded an item
463+
/// try to advance the second iterator at most one time.
462464
///
463465
/// # Examples
464466
///

0 commit comments

Comments
 (0)