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

Function GetMutableValue

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

Temporary mutable access to a value. This pointer becomes invalid on the next modifying operation.

Source from the content-addressed store, hash-verified

859 ///
860 /// This pointer becomes invalid on the next modifying operation.
861 uint8_t* GetMutableValue(int64_t i) {
862 uint8_t* data_ptr = byte_builder_.mutable_data();
863 return data_ptr + i * byte_width_;
864 }
865
866 /// Temporary mutable access to a value.
867 ///

Callers 1

UnsafeAppendMethod · 0.85

Calls 1

mutable_dataMethod · 0.45

Tested by

no test coverage detected