| 28 | void clear() { len = 0; } |
| 29 | bool empty() const { return len == 0; } |
| 30 | size_t size() const { return len; } |
| 31 | |
| 32 | // Get string view of current content (zero-copy) |
| 33 | std::string_view view() const { return std::string_view(data, len); } |
no outgoing calls
no test coverage detected