| 264 | /// be returned. |
| 265 | template <typename T> |
| 266 | T* mutable_data_as() { |
| 267 | return reinterpret_cast<T*>(mutable_data()); |
| 268 | } |
| 269 | |
| 270 | /// \brief Return the buffer's mutable data as a span |
| 271 | template <typename T> |
nothing calls this directly
no test coverage detected