Array descriptor (dtype)
| 924 | |
| 925 | /// Array descriptor (dtype) |
| 926 | pybind11::dtype dtype() const { |
| 927 | return reinterpret_borrow<pybind11::dtype>(detail::array_proxy(m_ptr)->descr); |
| 928 | } |
| 929 | |
| 930 | /// Total number of elements |
| 931 | ssize_t size() const { |
nothing calls this directly
no test coverage detected