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

Function BitLength

cpp/src/arrow/util/bitmap.h:453–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

451
452 template <size_t N>
453 static int64_t BitLength(const std::array<Bitmap, N>& bitmaps) {
454 for (size_t i = 1; i < N; ++i) {
455 assert(bitmaps[i].length() == bitmaps[0].length());
456 }
457 return bitmaps[0].length();
458 }
459
460 const uint8_t* data_ = NULLPTR;
461 uint8_t* mutable_data_ = NULLPTR;

Callers 3

VisitBitsFunction · 0.85
VisitWordsFunction · 0.85
VisitWordsAndWriteFunction · 0.85

Calls 1

lengthMethod · 0.45

Tested by

no test coverage detected