Type Definition na::VectorView

source ·
pub type VectorView<'a, T, D, RStride = Const<1>, CStride = D> = Matrix<T, D, Const<1>, ViewStorage<'a, T, D, Const<1>, RStride, CStride>>;
Expand description

A column vector view with dimensions known at compile-time.

Because this is an alias, not all its methods are listed here. See the Matrix type too.