| 1444 | |
| 1445 | template <typename... Ix> |
| 1446 | T *mutable_data(Ix... index) { |
| 1447 | return static_cast<T *>(array::mutable_data(index...)); |
| 1448 | } |
| 1449 | |
| 1450 | // Reference to element at a given index |
| 1451 | template <typename... Ix> |
no outgoing calls
no test coverage detected