MCPcopy Create free account
hub / github.com/apache/arrow / BufferOutputStream

Method BufferOutputStream

cpp/src/arrow/io/memory.cc:44–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42static constexpr int64_t kBufferMinimumSize = 256;
43
44BufferOutputStream::BufferOutputStream()
45 : is_open_(false), capacity_(0), position_(0), mutable_data_(nullptr) {}
46
47BufferOutputStream::BufferOutputStream(const std::shared_ptr<ResizableBuffer>& buffer)
48 : buffer_(buffer),

Calls 2

sizeMethod · 0.45
mutable_dataMethod · 0.45