| 182 | // GenerateBitsUnrolled. |
| 183 | struct VisitBitsFunctor { |
| 184 | void operator()(const uint8_t* bitmap, int64_t start_offset, int64_t length, |
| 185 | bool* destination) { |
| 186 | auto writer = [&](const bool& bit_value) { *destination++ = bit_value; }; |
| 187 | return internal::VisitBits(bitmap, start_offset, length, writer); |
| 188 | } |
| 189 | }; |
| 190 | |
| 191 | struct VisitBitsUnrolledFunctor { |
nothing calls this directly
no test coverage detected