Trait rayon_cond::CondExtend[][src]

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

Provided methods

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

Implementors

impl<C, T> CondExtend<T> for C where
    C: ParallelExtend<T> + Extend<T>,
    T: Send
[src]