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

Function BitmapToString

cpp/src/parquet/level_conversion_test.cc:39–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37using ::testing::ElementsAreArray;
38
39std::string BitmapToString(const uint8_t* bitmap, int64_t bit_count) {
40 return ::arrow::internal::Bitmap(bitmap, /*offset*/ 0, /*length=*/bit_count).ToString();
41}
42
43std::string BitmapToString(const std::vector<uint8_t>& bitmap, int64_t bit_count) {
44 return BitmapToString(bitmap.data(), bit_count);

Callers 2

TESTFunction · 0.70
TYPED_TESTFunction · 0.70

Calls 3

BitmapFunction · 0.50
ToStringMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected