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

Function BitmapToString

cpp/src/arrow/util/bitmap_test.cc:815–817  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

813}
814
815std::string BitmapToString(const uint8_t* bitmap, int64_t bit_count) {
816 return Bitmap(bitmap, /*offset*/ 0, /*length=*/bit_count).ToString();
817}
818
819std::string BitmapToString(const std::vector<uint8_t>& bitmap, int64_t bit_count) {
820 return BitmapToString(bitmap.data(), bit_count);

Callers 1

TESTFunction · 0.70

Calls 3

BitmapFunction · 0.70
ToStringMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected