pub type Mat2U<T> = Matrix<2, T, Unaligned>;
A 2x2 column major matrix.
This type is not SIMD-aligned and has the memory layout of [T; 4].
[T; 4]
pub struct Mat2U<T>(/* private fields */);