pub trait NdarrayIntoParallelIterator {
type Iter: ParallelIterator<Item=Self::Item>;
type Item: Send;
fn into_par_iter(self) -> Self::Iter;
}
Associated Types
type Iter: ParallelIterator<Item=Self::Item>
Required Methods
Implementors
impl<'a, A, D> NdarrayIntoParallelIterator for AxisIter<'a, A, D> where D: Dimension,
A: Sync
impl<'a, A, D> NdarrayIntoParallelIterator for AxisIterMut<'a, A, D> where D: Dimension,
A: Send + Sync
impl<'a, A, D> NdarrayIntoParallelIterator for ArrayView<'a, A, D> where D: Dimension,
A: Sync
impl<'a, A, D> NdarrayIntoParallelIterator for ArrayViewMut<'a, A, D> where D: Dimension,
A: Sync + Send
impl<'a, A, D> NdarrayIntoParallelIterator for &'a Array<A, D> where D: Dimension,
A: Sync
impl<'a, A, D> NdarrayIntoParallelIterator for &'a RcArray<A, D> where D: Dimension,
A: Sync
impl<'a, A, D> NdarrayIntoParallelIterator for &'a mut Array<A, D> where D: Dimension,
A: Sync + Send
impl<'a, A, D> NdarrayIntoParallelIterator for &'a mut RcArray<A, D> where D: Dimension,
A: Sync + Send + Clone