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

Function BitmapToString

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

Source from the content-addressed store, hash-verified

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