| 1487 | */ |
| 1488 | template <ssize_t Dims = -1> |
| 1489 | detail::unchecked_reference<T, Dims> unchecked() const & { |
| 1490 | return array::unchecked<T, Dims>(); |
| 1491 | } |
| 1492 | |
| 1493 | /// Ensure that the argument is a NumPy array of the correct dtype (and if not, try to convert |
| 1494 | /// it). In case of an error, nullptr is returned and the Python error is cleared. |
nothing calls this directly
no outgoing calls
no test coverage detected