[][src]Trait ndarray_parallel::NdarrayIntoParallelRefMutIterator

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

Associated Types

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

type Item: Send + 'x

Loading content...

Required methods

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

Loading content...

Implementors

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

Loading content...