matrix_math/
types.rs

1pub type MatrixRef<'m, T> = &'m [Vec<T>];
2pub type Matrix<T> = Vec<Vec<T>>;