Range iterator for computing union (binary) More...
#include <ranges-union.hpp>
Protected Attributes | |
I | i |
First iterator. | |
J | j |
Second iterator. | |
![]() | |
int | mi |
Minimum of current range. | |
int | ma |
Maximum of current range. | |
Constructors and initialization | |
Union (void) | |
Default constructor. | |
Union (I &i, J &j) | |
Initialize with iterator i and j. | |
void | init (I &i, J &j) |
Initialize with iterator i and j. | |
Iteration control | |
void | operator++ (void) |
Move iterator to next range (if possible) | |
Additional Inherited Members | |
![]() | |
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 | |
Range iterator for computing union (binary)
Definition at line 44 of file ranges-union.hpp.
|
inline |
Default constructor.
Definition at line 155 of file ranges-union.hpp.
|
inline |
Initialize with iterator i and j.
Definition at line 159 of file ranges-union.hpp.
|
inline |
Initialize with iterator i and j.
Definition at line 166 of file ranges-union.hpp.
|
inline |
Move iterator to next range (if possible)
Definition at line 124 of file ranges-union.hpp.
|
protected |
First iterator.
Definition at line 47 of file ranges-union.hpp.
|
protected |
Second iterator.
Definition at line 49 of file ranges-union.hpp.