| 991 | /// May throw if the array is not writeable. |
| 992 | template <typename... Ix> |
| 993 | void *mutable_data(Ix... index) { |
| 994 | check_writeable(); |
| 995 | return static_cast<void *>(detail::array_proxy(m_ptr)->data + offset_at(index...)); |
| 996 | } |
| 997 | |
| 998 | /// Byte offset from beginning of the array to a given index (full or partial). |
| 999 | /// May throw if the index would lead to out of bounds access. |
no test coverage detected