| 190 | |
| 191 | struct 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. */ |
nothing calls this directly
no test coverage detected