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

Method UnsafeExtendCurrent

cpp/src/arrow/array/builder_binary.h:164–166  ·  view source on GitHub ↗

Like ExtendCurrent, but do not check capacity

Source from the content-addressed store, hash-verified

162
163 /// Like ExtendCurrent, but do not check capacity
164 void UnsafeExtendCurrent(const uint8_t* value, offset_type length) {
165 value_data_builder_.UnsafeAppend(value, length);
166 }
167
168 void UnsafeExtendCurrent(std::string_view value) {
169 UnsafeExtendCurrent(reinterpret_cast<const uint8_t*>(value.data()),

Callers 3

JoinStringsMethod · 0.80
ExecMethod · 0.80

Calls 3

UnsafeAppendMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by 1