Array descriptor (dtype)
| 1124 | |
| 1125 | /// Array descriptor (dtype) |
| 1126 | pybind11::dtype dtype() const { |
| 1127 | return reinterpret_borrow<pybind11::dtype>(detail::array_proxy(m_ptr)->descr); |
| 1128 | } |
| 1129 | |
| 1130 | /// Total number of elements |
| 1131 | ssize_t size() const { |
nothing calls this directly
no test coverage detected