Type Alias Vector

Source
pub type Vector<const M: usize, T> = Matrix<M, 1, T>;
Expand description

A matrix with one column and M rows.

Aliased Typeยง

struct Vector<const M: usize, T> { /* private fields */ }