pub type Vector<const M: usize, T> = Matrix<M, 1, T>;
A matrix with one column and M rows.
M
struct Vector<const M: usize, T> { /* private fields */ }