Trait flatk::IntoParChunkIterator[][src]

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

Parallel version of IntoChunkIterator.

Associated Types

Required methods

Implementations on Foreign Types

Implementors