Array descriptor (dtype)
| 916 | |
| 917 | /// Array descriptor (dtype) |
| 918 | pybind11::dtype dtype() const { |
| 919 | return reinterpret_borrow<pybind11::dtype>(detail::array_proxy(m_ptr)->descr); |
| 920 | } |
| 921 | |
| 922 | /// Total number of elements |
| 923 | ssize_t size() const { |
nothing calls this directly
no test coverage detected