Returns the item size, i.e. sizeof(T)
| 704 | |
| 705 | /// Returns the item size, i.e. sizeof(T) |
| 706 | constexpr static ssize_t itemsize() { return sizeof(T); } |
| 707 | |
| 708 | /// Returns the shape (i.e. size) of dimension `dim` |
| 709 | ssize_t shape(ssize_t dim) const { return shape_[(size_t) dim]; } |
nothing calls this directly
no outgoing calls
no test coverage detected