Trait ndarray::IntoNdProducer [] [src]

pub trait IntoNdProducer {
    type Dim: Dimension;
    type Output: NdProducer<Dim=Self::Dim>;
    fn into_producer(self) -> Self::Output;
}

Argument conversion into a producer.

Slices and vectors can be used (equivalent to 1-dimensional array views).

Associated Types

Required Methods

Implementors