Trait ndarray::IntoNdProducer [−][src]
Argument conversion into a producer.
Slices and vectors can be used (equivalent to 1-dimensional array views).
This trait is like IntoIterator
for NdProducers
instead of iterators.
Associated Types
type Item
[src]
The element produced per iteration.
type Dim: Dimension
[src]
Dimension type of the producer
type Output: NdProducer<Dim = Self::Dim, Item = Self::Item>
[src]
Required methods
fn into_producer(self) -> Self::Output
[src]
Convert the value into an NdProducer
.
Implementations on Foreign Types
impl<'a, A: 'a> IntoNdProducer for &'a [A]
[src]
A slice is a one-dimensional producer
type Item = <Self::Output as NdProducer>::Item
type Dim = Ix1
type Output = ArrayView1<'a, A>
fn into_producer(self) -> Self::Output
[src]
impl<'a, A: 'a> IntoNdProducer for &'a mut [A]
[src]
A mutable slice is a mutable one-dimensional producer
type Item = <Self::Output as NdProducer>::Item
type Dim = Ix1
type Output = ArrayViewMut1<'a, A>
fn into_producer(self) -> Self::Output
[src]
impl<'a, A: 'a> IntoNdProducer for &'a Vec<A>
[src]
A Vec is a one-dimensional producer
type Item = <Self::Output as NdProducer>::Item
type Dim = Ix1
type Output = ArrayView1<'a, A>
fn into_producer(self) -> Self::Output
[src]
impl<'a, A: 'a> IntoNdProducer for &'a mut Vec<A>
[src]
A mutable Vec is a mutable one-dimensional producer
type Item = <Self::Output as NdProducer>::Item
type Dim = Ix1
type Output = ArrayViewMut1<'a, A>
fn into_producer(self) -> Self::Output
[src]
Implementors
impl<'a, A: 'a, S, D> IntoNdProducer for &'a ArrayBase<S, D> where
D: Dimension,
S: Data<Elem = A>,
[src]
D: Dimension,
S: Data<Elem = A>,
An array reference is an n-dimensional producer of element references (like ArrayView).
type Item = &'a A
type Dim = D
type Output = ArrayView<'a, A, D>
fn into_producer(self) -> Self::Output
[src]
impl<'a, A: 'a, S, D> IntoNdProducer for &'a mut ArrayBase<S, D> where
D: Dimension,
S: DataMut<Elem = A>,
[src]
D: Dimension,
S: DataMut<Elem = A>,
A mutable array reference is an n-dimensional producer of mutable element references (like ArrayViewMut).
type Item = &'a mut A
type Dim = D
type Output = ArrayViewMut<'a, A, D>
fn into_producer(self) -> Self::Output
[src]
impl<P> IntoNdProducer for P where
P: NdProducer,
[src]
P: NdProducer,