Trait ParallelSlice

Source
pub trait ParallelSlice<T: Sync> {
    // Required method
    fn par_chunks_exact(&self, chunk_size: usize) -> ChunksExact<'_, T>;
}

Required Methods§

Source

fn par_chunks_exact(&self, chunk_size: usize) -> ChunksExact<'_, T>

Implementations on Foreign Types§

Source§

impl<T: Sync> ParallelSlice<T> for [T]

Source§

fn par_chunks_exact(&self, chunk_size: usize) -> ChunksExact<'_, T>

Implementors§