Branch an asynchronous stream of cloneable items into two halfs that yield the items in lockstep.
As long as both branches are alive, one can never outpace the other by more than a fixed number of items.
This library is runtime agnostic. Nonetheless it is tested on both async_std
and tokio
.
```rust use futures::{stream, prelude::*}; use gabelung::Branch;
let (mut left, mut right) = Branch::new(stream::repeat(1u8));
asserteq!(left.next().await, Some(1u8)); asserteq!(right.next().await, Some(1u8)); ```
MIT