| 699 | /// Pointer access to the data at the given indices. |
| 700 | template <typename... Ix> |
| 701 | const T *data(Ix... ix) const { |
| 702 | return &operator()(ssize_t(ix)...); |
| 703 | } |
| 704 | |
| 705 | /// Returns the item size, i.e. sizeof(T) |
| 706 | constexpr static ssize_t itemsize() { return sizeof(T); } |
nothing calls this directly
no outgoing calls
no test coverage detected