Range iterator for subtracting a single range from a range iterator. More...
#include <ranges-add.hpp>
Constructors and initialization | |
SubRange (void) | |
Default constructor. More... | |
SubRange (I &i, int min, int max) | |
Initialize with ranges i and range min to max. More... | |
void | init (I &i, int min, int max) |
Initialize with ranges i and range min to max. More... | |
Additional Inherited Members | |
![]() | |
AddRange (void) | |
Default constructor. More... | |
AddRange (I &i, int min, int max) | |
Initialize with ranges i and range min to max. More... | |
void | init (I &i, int min, int max) |
Initialize with ranges i and range min to max. More... | |
void | operator++ (void) |
Move iterator to next range (if possible) More... | |
![]() | |
MinMax (void) | |
Default constructor. More... | |
MinMax (int min, int max) | |
Initialize with range min to max. More... | |
bool | operator() (void) const |
Test whether iterator is still at a range or done. More... | |
int | min (void) const |
Return smallest value of range. More... | |
int | max (void) const |
Return largest value of range. More... | |
unsigned int | width (void) const |
Return width of range (distance between minimum and maximum) More... | |
![]() | |
void | finish (void) |
Set range such that iteration stops More... | |
![]() | |
I | i |
Iterator to which the range is to be added. More... | |
int | r_min |
Minimum of range to be added. More... | |
int | r_max |
Maximum of range to be added. More... | |
![]() | |
int | mi |
Minimum of current range. More... | |
int | ma |
Maximum of current range. More... | |
Range iterator for subtracting a single range from a range iterator.
Definition at line 79 of file ranges-add.hpp.
|
inline |
Default constructor.
Definition at line 128 of file ranges-add.hpp.
|
inline |
Initialize with ranges i and range min to max.
Definition at line 132 of file ranges-add.hpp.
|
inline |
Initialize with ranges i and range min to max.
Definition at line 137 of file ranges-add.hpp.