| 1179 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |
| 1180 | template <typename... Ix> |
| 1181 | const void *data(Ix... index) const { |
| 1182 | return static_cast<const void *>(detail::array_proxy(m_ptr)->data + offset_at(index...)); |
| 1183 | } |
| 1184 | |
| 1185 | /// Mutable pointer to the contained data. If index is not provided, points to the |
| 1186 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |
no test coverage detected