MCPcopy Create free account
hub / github.com/apache/arrow / operator()

Method operator()

cpp/src/arrow/util/bit_util_test.cc:192–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190
191struct VisitBitsUnrolledFunctor {
192 void operator()(const uint8_t* bitmap, int64_t start_offset, int64_t length,
193 bool* destination) {
194 auto writer = [&](const bool& bit_value) { *destination++ = bit_value; };
195 return internal::VisitBitsUnrolled(bitmap, start_offset, length, writer);
196 }
197};
198
199/* Define a typed test class with some utility members. */

Callers

nothing calls this directly

Calls 1

VisitBitsUnrolledFunction · 0.70

Tested by

no test coverage detected