(&self, index: Idx)
| 896 | #[inline(always)] |
| 897 | #[allow(clippy::mut_from_ref)] |
| 898 | unsafe fn uget_mut<Idx>(&self, index: Idx) -> &mut T |
| 899 | where |
| 900 | T: Element, |
| 901 | D: Dimension, |
| 902 | Idx: NpyIndex<Dim = D>, |
| 903 | { |
| 904 | &mut *self.uget_raw(index) |
| 905 | } |
| 906 | |
| 907 | /// Same as [`uget`][Self::uget], but returns `*mut T`. |
| 908 | /// |