(&self)
| 1483 | |
| 1484 | #[inline(always)] |
| 1485 | fn data(&self) -> *mut T { |
| 1486 | unsafe { (*self.as_array_ptr()).data.cast() } |
| 1487 | } |
| 1488 | |
| 1489 | #[inline(always)] |
| 1490 | unsafe fn get(&self, index: impl NpyIndex<Dim = D>) -> Option<&T> |
no test coverage detected