| 1222 | |
| 1223 | template <typename... Ix> |
| 1224 | T *mutable_data(Ix... index) { |
| 1225 | return static_cast<T *>(array::mutable_data(index...)); |
| 1226 | } |
| 1227 | |
| 1228 | // Reference to element at a given index |
| 1229 | template <typename... Ix> |
no outgoing calls
no test coverage detected