Skip to content

Commit 0c23808

Browse files
MultiProduct: ends after the nullary product
While adding comments, I realized I could set the iterator as finished in the case of the nullary cartesian product. It adds a simple invariant. I thought of making a comment but a debug check is better.
1 parent cfa8a51 commit 0c23808

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/adaptors/multi_product.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ where
105105
let inner = self.0.as_mut()?;
106106
match &mut inner.cur {
107107
Some(values) => {
108+
debug_assert!(!inner.iters.is_empty());
108109
for (iter, item) in inner.iters.iter_mut().zip(values.iter_mut()).rev() {
109110
if let Some(new) = iter.iter.next() {
110111
*item = new;
@@ -122,10 +123,11 @@ where
122123
// Only the first time.
123124
None => {
124125
let next: Option<Vec<_>> = inner.iters.iter_mut().map(|i| i.iter.next()).collect();
125-
if next.is_some() {
126-
inner.cur = next.clone();
127-
} else {
126+
if next.is_none() || inner.iters.is_empty() {
127+
// This cartesian product had at most one item to generate and now ends.
128128
self.0 = None;
129+
} else {
130+
inner.cur = next.clone();
129131
}
130132
next
131133
}
@@ -175,7 +177,8 @@ where
175177
size_hint::add(sh, iter.iter.size_hint())
176178
})
177179
} else {
178-
(0, Some(0))
180+
// Since `cur` is some, this cartesian product has started so `iters` is not empty.
181+
unreachable!()
179182
}
180183
}
181184
}

0 commit comments

Comments
 (0)