[][src]Trait flood::Flood

pub trait Flood: Stream {
    fn interleave<J>(self, other: J) -> Interleave<Self, J>
    where
        Self: Sized,
        J: Stream<Item = Self::Item>
, { ... } }

The equivalent of itertools::Itertools

Do you love itertools::Itertools and wish your Streams implemented it? Fret no more! Flood to the rescue
This is a bit of WIP (Work In Progress) feel free to submit PRs implementing the rest of the methods. Otherwise they shall be implemented as they are needed

Provided methods

fn interleave<J>(self, other: J) -> Interleave<Self, J> where
    Self: Sized,
    J: Stream<Item = Self::Item>, 

Loading content...

Implementors

impl<St> Flood for St where
    St: Stream
[src]

Loading content...