Take Until
This crate adds the take_until method as an extension for iterators.
Example
Parsing the next base 128 varint from a byte slice.
use TakeUntilExt;
let varint = &;
let int: u32 = varint
.iter
.take_until
.enumerate
.fold;
assert_eq!;