| 888 | /// This is the constexpr equivalent of `dtype::of<T>().num()`. |
| 889 | template <typename T> |
| 890 | static constexpr int num_of() { |
| 891 | return detail::npy_format_descriptor<typename std::remove_cv<T>::type>::value; |
| 892 | } |
| 893 | |
| 894 | /// Size of the data type in bytes. |
| 895 | ssize_t itemsize() const { |
nothing calls this directly
no outgoing calls
no test coverage detected