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

Function UnsafeAppendToBitmap

cpp/src/arrow/array/builder_base.h:228–232  ·  view source on GitHub ↗

Append to null bitmap, update the length

Source from the content-addressed store, hash-verified

226
227 // Append to null bitmap, update the length
228 void UnsafeAppendToBitmap(bool is_valid) {
229 null_bitmap_builder_.UnsafeAppend(is_valid);
230 ++length_;
231 if (!is_valid) ++null_count_;
232 }
233
234 // Vector append. Treat each zero byte as a nullzero. If valid_bytes is null
235 // assume all of length bits are valid.

Callers 15

AppendNullMethod · 0.85
AppendEmptyValueMethod · 0.85
AppendValuesMethod · 0.85
UnsafeAppendMethod · 0.85
UnsafeAppendNullMethod · 0.85
UnsafeAdvanceMethod · 0.85
UnsafeAppendFunction · 0.85
UnsafeAppendNullFunction · 0.85
AppendMethod · 0.85
AppendValuesMethod · 0.85
AppendNullMethod · 0.85
AppendNullsMethod · 0.85

Calls 2

UnsafeAppendMethod · 0.45
false_countMethod · 0.45

Tested by

no test coverage detected