MCPcopy Create free account
hub / github.com/bytedance/sonic-cpp / WriteBuffer

Method WriteBuffer

include/sonic/writebuffer.h:27–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25class WriteBuffer {
26 public:
27 WriteBuffer() : stack_() {}
28 WriteBuffer(size_t cap) : stack_(cap) {}
29 WriteBuffer(const WriteBuffer&) = delete;
30 WriteBuffer(WriteBuffer&& rhs) : stack_(std::move(rhs.stack_)) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected