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

Function ASSERT_READER_VALUES

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

Assert that a BitmapReader yields the given bit values

Source from the content-addressed store, hash-verified

106
107// Assert that a BitmapReader yields the given bit values
108void ASSERT_READER_VALUES(BitmapReader& reader, std::vector<int> values) {
109 for (const auto& value : values) {
110 if (value) {
111 ASSERT_READER_SET(reader);
112 } else {
113 ASSERT_READER_NOT_SET(reader);
114 }
115 }
116}
117
118} // namespace
119

Callers 3

TESTFunction · 0.85
TestAlignedMethod · 0.85
TestUnalignedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected