| 1416 | |
| 1417 | template <typename... Ix> |
| 1418 | ssize_t index_at(Ix... index) const { |
| 1419 | return offset_at(index...) / itemsize(); |
| 1420 | } |
| 1421 | |
| 1422 | template <typename... Ix> |
| 1423 | const T *data(Ix... index) const { |
nothing calls this directly
no test coverage detected