| 1197 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |
| 1198 | template <typename... Ix> |
| 1199 | const void *data(Ix... index) const { |
| 1200 | return static_cast<const void *>(detail::array_proxy(m_ptr)->data + offset_at(index...)); |
| 1201 | } |
| 1202 | |
| 1203 | /// Mutable pointer to the contained data. If index is not provided, points to the |
| 1204 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |
no test coverage detected