| 211 | } |
| 212 | |
| 213 | detail::buffer_value<T> operator[](size_t index) |
| 214 | { |
| 215 | return *(begin() + static_cast<ptrdiff_t>(index)); |
| 216 | } |
| 217 | |
| 218 | const detail::buffer_value<T> operator[](size_t index) const |
| 219 | { |
nothing calls this directly
no outgoing calls
no test coverage detected