[][src]Trait devise::ext::Split2

pub trait Split2<A, B>: Iterator {
    fn split2(self) -> (Vec<A>, Vec<B>);
}

Required methods

fn split2(self) -> (Vec<A>, Vec<B>)

Loading content...

Implementors

impl<A, B, I> Split2<A, B> for I where
    I: IntoIterator<Item = (A, B)> + Iterator
[src]

Loading content...