[][src]Trait devise_core::ext::Split3

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

Required methods

fn split3(self) -> (Vec<A>, Vec<B>, Vec<C>)

Loading content...

Implementors

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

Loading content...