| 983 | /// May throw if the array is not writeable. |
| 984 | template <typename... Ix> |
| 985 | void *mutable_data(Ix... index) { |
| 986 | check_writeable(); |
| 987 | return static_cast<void *>(detail::array_proxy(m_ptr)->data + offset_at(index...)); |
| 988 | } |
| 989 | |
| 990 | /// Byte offset from beginning of the array to a given index (full or partial). |
| 991 | /// May throw if the index would lead to out of bounds access. |
no test coverage detected