pub trait AsRefMatrixParts<T, const C: usize, const R: usize>where
T: MatrixScalar,{
// Required method
fn as_ref_parts(&self) -> &[[T; R]; C];
}
Expand description
Enables reading from the matrix (via &[[T; R]; C]
)
pub trait AsRefMatrixParts<T, const C: usize, const R: usize>where
T: MatrixScalar,{
// Required method
fn as_ref_parts(&self) -> &[[T; R]; C];
}
Enables reading from the matrix (via &[[T; R]; C]
)