From 2ca4b3b02d8ad96ebe9be1896ef9e4c2b44ae192 Mon Sep 17 00:00:00 2001 From: Andreas Longva Date: Mon, 14 Nov 2022 09:41:03 +0100 Subject: [PATCH] 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". --- src/base/alias_slice.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/base/alias_slice.rs b/src/base/alias_slice.rs index 3fb5d793..f71262d4 100644 --- a/src/base/alias_slice.rs +++ b/src/base/alias_slice.rs @@ -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>;