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

Method OptionalBitBlockCounter

cpp/src/arrow/util/bit_block_counter.cc:40–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40OptionalBitBlockCounter::OptionalBitBlockCounter(const uint8_t* validity_bitmap,
41 int64_t offset, int64_t length)
42 : has_bitmap_(validity_bitmap != nullptr),
43 position_(0),
44 length_(length),
45 counter_(util::MakeNonNull(validity_bitmap), offset, length) {}
46
47OptionalBitBlockCounter::OptionalBitBlockCounter(
48 const std::shared_ptr<Buffer>& validity_bitmap, int64_t offset, int64_t length)

Callers

nothing calls this directly

Calls 2

MakeNonNullFunction · 0.85
dataMethod · 0.45

Tested by

no test coverage detected