Deprecate MatrixSliceMutN

There is no other type alias with this naming convention. I believe it
is a remnant from the past, when we had e.g. MatrixN type aliases. But
these no longer exist, therefore I believe this alias should also be
removed, instead of updated to "MatrixViewMutN".
This commit is contained in:
Andreas Longva 2022-11-14 09:41:03 +01:00
parent f792b5f568
commit 2ca4b3b02d
1 changed files with 1 additions and 0 deletions

View File

@ -378,6 +378,7 @@ pub type MatrixSliceMutMN<'a, T, R, C, RStride = U1, CStride = R> =
/// A column-major matrix slice with `D` rows and columns.
///
/// **Because this is an alias, not all its methods are listed here. See the [`Matrix`](crate::base::Matrix) type too.**
#[deprecated = "Use MatrixViewMut instead."]
pub type MatrixSliceMutN<'a, T, D, RStride = U1, CStride = D> =
Matrix<T, D, D, ViewStorageMut<'a, T, D, D, RStride, CStride>>;