| 476 | |
| 477 | template<size_t N> |
| 478 | void populate_bitset_set(bitset_set<N, KeyT> &set) const { |
| 479 | for (IntT ki = 0; static_cast<unsigned>(ki) < data.size(); ++ki) { |
| 480 | KeyT k(ki); |
| 481 | if (_at(k)) { |
| 482 | set.insert(k); |
| 483 | } |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | /** Standard ostream operator */ |
| 488 | friend std::ostream &operator<<(std::ostream &lhs, |
no test coverage detected