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

Method IsNotSet

cpp/src/arrow/util/bitmap_reader.h:48–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46 bool IsSet() const { return (current_byte_ & (1 << bit_offset_)) != 0; }
47
48 bool IsNotSet() const { return (current_byte_ & (1 << bit_offset_)) == 0; }
49
50 void Next() {
51 ++bit_offset_;

Callers 5

GenerateOffsetsFunction · 0.45
OffsetsFromLengthsArrayFunction · 0.45
TESTFunction · 0.45
Ingest_some_nullsMethod · 0.45
Get_regionMethod · 0.45

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.36