Skip to content

Commit 659639e

Browse files
committed
mob next [ci-skip] [ci skip] [skip ci]
1 parent a305d97 commit 659639e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/adaptors/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,9 +879,11 @@ impl<I,T,E> Iterator for EnumerateOk<I>
879879
let index = self.index;
880880

881881
self.index += 1;
882-
todo!();
883882

883+
Some(Ok((index, v)))
884884
}
885+
Some(Err(e)) => Some(Err(e)),
886+
None => None
885887
}
886888
}
887889
}

0 commit comments

Comments
 (0)