(&mut self)
| 505 | /// Provides a mutable array view of the interior of the NumPy array. |
| 506 | #[inline(always)] |
| 507 | pub fn as_array_mut(&mut self) -> ArrayViewMut<'_, T, D> { |
| 508 | // SAFETY: Global borrow flags ensure aliasing discipline. |
| 509 | unsafe { self.array.as_array_mut() } |
| 510 | } |
| 511 | |
| 512 | /// Provide a mutable slice view of the interior of the NumPy array if it is contiguous. |
| 513 | #[inline(always)] |
no outgoing calls