| 212 | } |
| 213 | |
| 214 | BytesView ByteBuffer::toBytesView() { |
| 215 | return BytesView(strongSmallRef(this), data(), size()); |
| 216 | } |
| 217 | |
| 218 | std::string_view ByteBuffer::toStringView() const { |
| 219 | return std::string_view(reinterpret_cast<const char*>(data()), size()); |