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