pub trait CondExtend<T>: ParallelExtend<T> + Extend<T>where
    T: Send,{
    // Provided method
    fn cond_extend<P, S>(&mut self, cond_iter: CondIterator<P, S>)
       where P: ParallelIterator<Item = T>,
             S: Iterator<Item = T> { ... }
}

Provided Methods§

source

fn cond_extend<P, S>(&mut self, cond_iter: CondIterator<P, S>)where P: ParallelIterator<Item = T>, S: Iterator<Item = T>,

Implementors§

source§

impl<C, T> CondExtend<T> for Cwhere C: ParallelExtend<T> + Extend<T>, T: Send,