| 1003 | /// May throw if the index would lead to out of bounds access. |
| 1004 | template <typename... Ix> |
| 1005 | ssize_t index_at(Ix... index) const { |
| 1006 | return offset_at(index...) / itemsize(); |
| 1007 | } |
| 1008 | |
| 1009 | /** |
| 1010 | * Returns a proxy object that provides access to the array's data without bounds or |
nothing calls this directly
no test coverage detected