[][src]Trait flatk::IntoParChunkIterator

pub trait IntoParChunkIterator {
    type Item: Send;
    type IterType: IndexedParallelIterator<Item = Self::Item>;
    fn into_par_chunk_iter(self, chunk_size: usize) -> Self::IterType;
}

Parallel version of IntoChunkIterator.

Associated Types

type Item: Send

type IterType: IndexedParallelIterator<Item = Self::Item>

Loading content...

Required methods

fn into_par_chunk_iter(self, chunk_size: usize) -> Self::IterType

Loading content...

Implementations on Foreign Types

impl<'a, T: Send + Sync> IntoParChunkIterator for &'a [T][src]

type Item = &'a [T]

type IterType = Chunks<'a, T>

Loading content...

Implementors

Loading content...