IntoParallelIterator

Trait IntoParallelIterator 

Source
pub trait IntoParallelIterator: Sized {
    // Required method
    fn into_par_iter(self) -> ParallelSplittableIterator<Self>;
}
Available on crate features sync and rayon only.
Expand description

Required Methods§

Source

fn into_par_iter(self) -> ParallelSplittableIterator<Self>

Parallelizes this iterator.

Returns a ParallelSplittableIterator bridge that implements rayon::iter::ParallelIterator.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§