diff --git a/src/adaptors/coalesce.rs b/src/adaptors/coalesce.rs index f3abdef73..21eaa016d 100644 --- a/src/adaptors/coalesce.rs +++ b/src/adaptors/coalesce.rs @@ -10,6 +10,9 @@ where C: CountItem, { iter: I, + /// `last` is `None` while no item have been taken out of `iter` (at definition). + /// Then `last` will be `Some(Some(item))` until `iter` is exhausted, + /// in which case `last` will be `Some(None)`. last: Option>, f: F, }