| 33 | namespace kudu { |
| 34 | |
| 35 | static void ReadBackBitmap(uint8_t *bm, size_t bits, |
| 36 | std::vector<size_t> *result) { |
| 37 | ForEachSetBit(bm, bits, [&](size_t b) { |
| 38 | result->push_back(b); |
| 39 | }); |
| 40 | } |
| 41 | |
| 42 | TEST(TestBitMap, TestIteration) { |
| 43 | uint8_t bm[8]; |
no test coverage detected