Trait ndarray_parallel::NdarrayIntoParallelRefIterator[][src]

pub trait NdarrayIntoParallelRefIterator<'x> {
    type Iter: ParallelIterator<Item = Self::Item>;
    type Item: Send + 'x;
    fn par_iter(&'x self) -> Self::Iter;
}

Associated Types

Required Methods

Implementors