Returns the total number of bytes used by the referenced data. Note that the actual span in memory may be larger if the referenced array has non-contiguous strides (e.g. for a slice).
| 727 | /// in memory may be larger if the referenced array has non-contiguous strides (e.g. for a |
| 728 | /// slice). |
| 729 | ssize_t nbytes() const { return size() * itemsize(); } |
| 730 | }; |
| 731 | |
| 732 | template <typename T, ssize_t Dims> |
nothing calls this directly
no test coverage detected