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

Function UnsafeAppend

cpp/src/arrow/buffer_builder.h:142–145  ·  view source on GitHub ↗

Unsafe methods don't check existing size

Source from the content-addressed store, hash-verified

140
141 // Unsafe methods don't check existing size
142 void UnsafeAppend(const void* data, const int64_t length) {
143 memcpy(data_ + size_, data, static_cast<size_t>(length));
144 size_ += length;
145 }
146
147 void UnsafeAppend(std::string_view v) {
148 UnsafeAppend(v.data(), static_cast<int64_t>(v.size()));

Callers 3

AppendFunction · 0.70
AppendMethod · 0.70
AppendMethod · 0.70

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected