| 761 | /// Mutable pointer access to the data at the given indices. |
| 762 | template <typename... Ix> |
| 763 | T *mutable_data(Ix... ix) { |
| 764 | return &operator()(ssize_t(ix)...); |
| 765 | } |
| 766 | }; |
| 767 | |
| 768 | template <typename T, ssize_t Dim> |
nothing calls this directly
no outgoing calls
no test coverage detected