Trait stencil::NdArray [] [src]

pub trait NdArray {
    type Elem: LinalgScalar;
    type Dim: Dimension;
    fn shape(&self) -> <Self::Dim as Dimension>::Pattern;
fn as_view(&self) -> ArrayView<Self::Elem, Self::Dim>;
fn as_view_mut(&mut self) -> ArrayViewMut<Self::Elem, Self::Dim>; }

Associated Types

Required Methods

Implementations on Foreign Types

impl<A: LinalgScalar, S: DataMut<Elem = A>, D: Dimension> NdArray for ArrayBase<S, D>
[src]

[src]

[src]

[src]

Implementors