1
1
#![ cfg( feature = "use_alloc" ) ]
2
2
use Option :: { self as State , None as ProductEnded , Some as ProductInProgress } ;
3
+ use Option :: { self as CurrentItems , None as NotYetPopulated , Some as Populated } ;
3
4
4
5
use alloc:: vec:: Vec ;
5
6
28
29
{
29
30
/// Holds the iterators.
30
31
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 > > ,
33
34
}
34
35
35
36
impl < I > std:: fmt:: Debug for MultiProduct < I >
63
64
iters : iters
64
65
. map ( |i| MultiProductIter :: new ( i. into_iter ( ) ) )
65
66
. collect ( ) ,
66
- cur : None ,
67
+ cur : NotYetPopulated ,
67
68
} ;
68
69
MultiProduct ( ProductInProgress ( inner) )
69
70
}
@@ -103,7 +104,7 @@ where
103
104
// This fuses the iterator.
104
105
let inner = self . 0 . as_mut ( ) ?;
105
106
match & mut inner. cur {
106
- Some ( values) => {
107
+ Populated ( values) => {
107
108
debug_assert ! ( !inner. iters. is_empty( ) ) ;
108
109
// Find (from the right) a non-finished iterator and
109
110
// reset the finished ones encountered.
@@ -113,15 +114,15 @@ where
113
114
return Some ( values. clone ( ) ) ;
114
115
} else {
115
116
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.
117
118
* item = iter. iter . next ( ) . unwrap ( ) ;
118
119
}
119
120
}
120
121
self . 0 = ProductEnded ;
121
122
None
122
123
}
123
124
// Only the first time.
124
- None => {
125
+ NotYetPopulated => {
125
126
let next: Option < Vec < _ > > = inner. iters . iter_mut ( ) . map ( |i| i. iter . next ( ) ) . collect ( ) ;
126
127
if next. is_none ( ) || inner. iters . is_empty ( ) {
127
128
// This cartesian product had at most one item to generate and now ends.
@@ -181,7 +182,7 @@ where
181
182
size_hint:: add ( sh, iter. iter . size_hint ( ) )
182
183
} )
183
184
} 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.
185
186
unreachable ! ( )
186
187
}
187
188
}
@@ -191,7 +192,7 @@ where
191
192
fn last ( self ) -> Option < Self :: Item > {
192
193
let MultiProductInner { iters, cur } = self . 0 ?;
193
194
// Collect the last item of each iterator of the product.
194
- if let Some ( values) = cur {
195
+ if let Populated ( values) = cur {
195
196
let mut count = iters. len ( ) ;
196
197
let last = iters
197
198
. into_iter ( )
0 commit comments