| 593 | size_t capacity() const noexcept { return _capacity; } |
| 594 | size_t size() const noexcept { return _size; } |
| 595 | size_t offset() const noexcept { return _offset; } |
| 596 | |
| 597 | // Attach the given buffer with a given offset to the current read buffer |
| 598 | void attach(const void* data, size_t size, size_t offset = 0); |
no outgoing calls