Trait rayon_cond::CondExtend

source ·
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>,

Object Safety§

This trait is not object safe.

Implementors§

source§

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