Trait ndarray_parallel::prelude::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
type Iter: ParallelIterator<Item = Self::Item>
type Item: Send + 'x
Required Methods
Implementors
impl<'data, I: 'data + ?Sized> NdarrayIntoParallelRefIterator<'data> for I where
&'data I: NdarrayIntoParallelIterator,