| 848 | /// May throw if the array is not writeable. |
| 849 | template <typename... Ix> |
| 850 | void *mutable_data(Ix... index) { |
| 851 | check_writeable(); |
| 852 | return static_cast<void *>(detail::array_proxy(m_ptr)->data + offset_at(index...)); |
| 853 | } |
| 854 | |
| 855 | /// Byte offset from beginning of the array to a given index (full or partial). |
| 856 | /// May throw if the index would lead to out of bounds access. |
no test coverage detected