| 983 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |
| 984 | template <typename... Ix> |
| 985 | const void *data(Ix... index) const { |
| 986 | return static_cast<const void *>(detail::array_proxy(m_ptr)->data + offset_at(index...)); |
| 987 | } |
| 988 | |
| 989 | /// Mutable pointer to the contained data. If index is not provided, points to the |
| 990 | /// beginning of the buffer. May throw if the index would lead to out of bounds access. |
no test coverage detected