[][src]Trait ndarray_parallel::NdarrayIntoParallelRefIterator

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

Associated Types

type Iter: ParallelIterator<Item = Self::Item>

type Item: Send + 'x

Loading content...

Required methods

fn par_iter(&'x self) -> Self::Iter

Loading content...

Implementors

impl<'data, I: 'data + ?Sized> NdarrayIntoParallelRefIterator<'data> for I where
    &'data I: NdarrayIntoParallelIterator
[src]

Loading content...