17 #ifndef AWALI_MISC_BITSET_HH
18 #define AWALI_MISC_BITSET_HH
28 const std::bitset<N>& bs_;
34 while(current_ < N && !bs_.test(current_))
36 return (current_ < N);
40 while(current_ < N && !bs_.test(current_))
auto get_iterator(const std::bitset< N > &bs) -> bitset_iterator< N >
Definition: bitset.hh:48
Main namespace of Awali.
Definition: ato.hh:22
size_t next()
Definition: bitset.hh:39
bool has_next()
Definition: bitset.hh:33