Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2b0b593

Browse files
committedJan 18, 2024
MultiProduct values: comment with code (1)
1 parent 02483ae commit 2b0b593

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed
 

‎src/adaptors/multi_product.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![cfg(feature = "use_alloc")]
22
use Option::{self as State, None as ProductEnded, Some as ProductInProgress};
3+
use Option::{self as CurrentItems, None as NotYetPopulated, Some as Populated};
34

45
use alloc::vec::Vec;
56

@@ -28,8 +29,8 @@ where
2829
{
2930
/// Holds the iterators.
3031
iters: Vec<MultiProductIter<I>>,
31-
/// It is `None` at the beginning then it holds the current item of each iterator.
32-
cur: Option<Vec<I::Item>>,
32+
/// Not populated at the beginning then it holds the current item of each iterator.
33+
cur: CurrentItems<Vec<I::Item>>,
3334
}
3435

3536
impl<I> std::fmt::Debug for MultiProduct<I>
@@ -63,7 +64,7 @@ where
6364
iters: iters
6465
.map(|i| MultiProductIter::new(i.into_iter()))
6566
.collect(),
66-
cur: None,
67+
cur: NotYetPopulated,
6768
};
6869
MultiProduct(ProductInProgress(inner))
6970
}
@@ -103,7 +104,7 @@ where
103104
// This fuses the iterator.
104105
let inner = self.0.as_mut()?;
105106
match &mut inner.cur {
106-
Some(values) => {
107+
Populated(values) => {
107108
debug_assert!(!inner.iters.is_empty());
108109
// Find (from the right) a non-finished iterator and
109110
// reset the finished ones encountered.
@@ -113,15 +114,15 @@ where
113114
return Some(values.clone());
114115
} else {
115116
iter.iter = iter.iter_orig.clone();
116-
// `cur` is not none so the untouched `iter_orig` can not be empty.
117+
// `cur` is populated so the untouched `iter_orig` can not be empty.
117118
*item = iter.iter.next().unwrap();
118119
}
119120
}
120121
self.0 = ProductEnded;
121122
None
122123
}
123124
// Only the first time.
124-
None => {
125+
NotYetPopulated => {
125126
let next: Option<Vec<_>> = inner.iters.iter_mut().map(|i| i.iter.next()).collect();
126127
if next.is_none() || inner.iters.is_empty() {
127128
// This cartesian product had at most one item to generate and now ends.
@@ -181,7 +182,7 @@ where
181182
size_hint::add(sh, iter.iter.size_hint())
182183
})
183184
} else {
184-
// Since `cur` is some, this cartesian product has started so `iters` is not empty.
185+
// Since it is populated, this cartesian product has started so `iters` is not empty.
185186
unreachable!()
186187
}
187188
}
@@ -191,7 +192,7 @@ where
191192
fn last(self) -> Option<Self::Item> {
192193
let MultiProductInner { iters, cur } = self.0?;
193194
// Collect the last item of each iterator of the product.
194-
if let Some(values) = cur {
195+
if let Populated(values) = cur {
195196
let mut count = iters.len();
196197
let last = iters
197198
.into_iter()

0 commit comments

Comments
 (0)
Please sign in to comment.