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ยง

#[repr(C)]
pub struct Vector<const M: usize, T> { /* private fields */ }