Type Definition na::MatrixSlice

source ·
pub type MatrixSlice<'a, T, R, C, RStride = Const<1>, CStride = R> = Matrix<T, R, C, ViewStorage<'a, T, R, C, RStride, CStride>>;
👎Deprecated: Use MatrixView instead.
Expand description

A matrix slice.

This type alias exists only for legacy purposes and is deprecated. It will be removed in a future release. Please use MatrixView instead. See issue #1076 for the rationale.