|
| Singleton (void) |
| Default constructor.
|
|
| Singleton (int min, int max) |
| Initialize with range min to max.
|
|
void | init (int min, int max) |
| Initialize with range min to max.
|
|
void | operator++ (void) |
| Move iterator to next range (if possible)
|
|
| MinMax (void) |
| Default constructor.
|
|
| MinMax (int min, int max) |
| Initialize with range min to max.
|
|
bool | operator() (void) const |
| Test whether iterator is still at a range or done.
|
|
int | min (void) const |
| Return smallest value of range.
|
|
int | max (void) const |
| Return largest value of range.
|
|
unsigned int | width (void) const |
| Return width of range (distance between minimum and maximum)
|
|
void | finish (void) |
| Set range such that iteration stops
|
|
int | mi |
| Minimum of current range.
|
|
int | ma |
| Maximum of current range.
|
|
Range iterator for least upper bound of constant universe set view
Definition at line 575 of file const.hpp.