We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
a_cur
Product
1 parent bf2b012 commit 6d29178Copy full SHA for 6d29178
src/adaptors/mod.rs
@@ -308,6 +308,9 @@ where
308
I: Iterator,
309
{
310
a: I,
311
+ /// `a_cur` is `None` while no item have been taken out of `a` (at definition).
312
+ /// Then `a_cur` will be `Some(Some(item))` until `a` is exhausted,
313
+ /// in which case `a_cur` will be `Some(None)`.
314
a_cur: Option<Option<I::Item>>,
315
b: J,
316
b_orig: J,
0 commit comments