(&self)
| 1538 | } |
| 1539 | |
| 1540 | fn try_readonly(&self) -> Result<PyReadonlyArray<'py, T, D>, BorrowError> |
| 1541 | where |
| 1542 | T: Element, |
| 1543 | D: Dimension, |
| 1544 | { |
| 1545 | self.clone().try_into_readonly() |
| 1546 | } |
| 1547 | |
| 1548 | fn try_into_readwrite(self) -> Result<PyReadwriteArray<'py, T, D>, BorrowError> |
| 1549 | where |
no test coverage detected