Value iterator for values in a bitset. More...
#include <values-bitset.hpp>
Protected Member Functions | |
void | move (void) |
Move to next set bit. |
Protected Attributes | |
const BS & | bs |
Bitset. | |
unsigned int | cur |
Current value. | |
unsigned int | limit |
Limit value. |
Constructors and initialization | |
BitSet (const BS &bs) | |
Initialize with bitset bs. | |
BitSet (const BS &bs, int n, int m) | |
Initialize with bitset bs and start n and stop m. |
Iteration control | |
bool | operator() (void) const |
Test whether iterator is still at a value or done. | |
void | operator++ (void) |
Move iterator to next value (if possible) |
Value access | |
int | val (void) const |
Return current value. |
Value iterator for values in a bitset.
Definition at line 42 of file values-bitset.hpp.
|
inline |
Initialize with bitset bs.
Definition at line 79 of file values-bitset.hpp.
|
inline |
Initialize with bitset bs and start n and stop m.
Definition at line 85 of file values-bitset.hpp.
|
protected |
Move to next set bit.
|
inline |
Test whether iterator is still at a value or done.
Definition at line 98 of file values-bitset.hpp.
|
inline |
Move iterator to next value (if possible)
Definition at line 93 of file values-bitset.hpp.
|
inline |
Return current value.
Definition at line 104 of file values-bitset.hpp.
|
protected |
Bitset.
Definition at line 45 of file values-bitset.hpp.
|
protected |
Current value.
Definition at line 47 of file values-bitset.hpp.
|
protected |
Limit value.
Definition at line 49 of file values-bitset.hpp.