Skip to content

Commit

Permalink
Document the field a_cur of Product
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe-Cholet authored and jswrenn committed Nov 13, 2023
1 parent bf2b012 commit 6d29178
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/adaptors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ where
I: Iterator,
{
a: I,
/// `a_cur` is `None` while no item have been taken out of `a` (at definition).
/// Then `a_cur` will be `Some(Some(item))` until `a` is exhausted,
/// in which case `a_cur` will be `Some(None)`.
a_cur: Option<Option<I::Item>>,
b: J,
b_orig: J,
Expand Down

0 comments on commit 6d29178

Please sign in to comment.