Trait ndarray_parallel::prelude::NdarrayIntoParallelRefMutIterator
[−]
[src]
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
Required Methods
fn par_iter_mut(&'x mut self) -> Self::Iter
Implementors
impl<'data, I: 'data + ?Sized> NdarrayIntoParallelRefMutIterator<'data> for I where
&'data mut I: NdarrayIntoParallelIterator,