| 403 | /// \return the buffer |
| 404 | template<typename U> |
| 405 | buffer<U> cast_to() { |
| 406 | size_t newCount = size_ / sizeof(U); |
| 407 | return buffer<U>(reinterpret_cast<U*>(data_), newCount); |
| 408 | } |
| 409 | |
| 410 | /// \brief as bytes |
| 411 | /// \return the bytes |
nothing calls this directly
no outgoing calls
no test coverage detected