pub type Matrix5<T> = Matrix<T, U5, U5, ArrayStorage<T, 5, 5>>;
A stack-allocated, column-major, 5x5 square matrix.
Because this is an alias, not all its methods are listed here. See the Matrix type too.
Matrix