Trait rayon::iter::ParallelExtend [] [src]

pub trait ParallelExtend<T> where
    T: Send
{ fn par_extend<I>(&mut self, par_iter: I)
    where
        I: IntoParallelIterator<Item = T>
; }

ParallelExtend extends an existing collection with items from a ParallelIterator.

Required Methods

Implementors