MCPcopy Create free account
hub / github.com/apache/fory / write_directly

Method write_directly

cpp/fory/row/writer.cc:99–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99void Writer::write_directly(int64_t value) {
100 buffer_->grow(8);
101 buffer_->unsafe_put(cursor(), value);
102 buffer_->increase_writer_index(8);
103}
104
105void Writer::write_directly(uint32_t offset, int64_t value) {
106 buffer_->unsafe_put(offset, value);

Callers 2

writeMethod · 0.80
TESTFunction · 0.80

Calls 3

unsafe_putMethod · 0.80
increase_writer_indexMethod · 0.80
growMethod · 0.65

Tested by 1

TESTFunction · 0.64