[][src]Trait devise::ext::Split3

pub trait Split3<A, B, C>: 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> Split3<A, B, C> for I where
    I: IntoIterator<Item = (A, B, C)> + Iterator
[src]

Loading content...