| 400 | struct VisitBitsFunctor { |
| 401 | template <class Visitor> |
| 402 | void operator()(const uint8_t* bitmap, int64_t start_offset, int64_t length, |
| 403 | Visitor&& g) { |
| 404 | return internal::VisitBits(bitmap, start_offset, length, g); |
| 405 | } |
| 406 | }; |
| 407 | |
| 408 | struct VisitBitsUnrolledFunctor { |
nothing calls this directly
no test coverage detected