[][src]Trait devise_core::ext::Split2

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

Required methods

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

Loading content...

Implementors

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

Loading content...