Trait ndarray_linalg::layout::AllocatedArray [] [src]

pub trait AllocatedArray {
    type Elem;
    fn layout(&self) -> Result<MatrixLayout>;
fn square_layout(&self) -> Result<MatrixLayout>;
fn as_allocated(&self) -> Result<&[Self::Elem]>; }

Associated Types

Required Methods

Implementations on Foreign Types

impl<A, S> AllocatedArray for ArrayBase<S, Ix2> where
    S: Data<Elem = A>, 
[src]

Implementors