(&self, index: Idx)
| 876 | /// ``` |
| 877 | #[inline(always)] |
| 878 | unsafe fn uget<Idx>(&self, index: Idx) -> &T |
| 879 | where |
| 880 | T: Element, |
| 881 | D: Dimension, |
| 882 | Idx: NpyIndex<Dim = D>, |
| 883 | { |
| 884 | &*self.uget_raw(index) |
| 885 | } |
| 886 | |
| 887 | /// Same as [`uget`](Self::uget), but returns `&mut T`. |
| 888 | /// |