Specialized mapping of ranges for non-strict maps. More...
#include <ranges-map.hpp>
Protected Member Functions | |
void | next (void) |
Find next mapped range. | |
![]() | |
void | finish (void) |
Set range such that iteration stops | |
Protected Attributes | |
I | i |
Input range. | |
M | m |
Map for ranges. | |
![]() | |
int | mi |
Minimum of current range. | |
int | ma |
Maximum of current range. | |
Constructors and initialization | |
Map (void) | |
Default constructor. | |
Map (I &i) | |
Initialize with ranges from i. | |
Map (I &i, const M &m) | |
Initialize with ranges from i and map m. | |
void | init (I &i) |
Initialize with ranges from i. | |
void | init (I &i, const M &m) |
Initialize with ranges from i and map m. | |
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) | |
Specialized mapping of ranges for non-strict maps.
Definition at line 82 of file ranges-map.hpp.
|
inline |
Default constructor.
Definition at line 157 of file ranges-map.hpp.
|
inline |
Initialize with ranges from i.
Definition at line 187 of file ranges-map.hpp.
|
inline |
Initialize with ranges from i and map m.
Definition at line 192 of file ranges-map.hpp.
|
inlineprotected |
Find next mapped range.
Definition at line 161 of file ranges-map.hpp.
|
inline |
Initialize with ranges from i.
Definition at line 176 of file ranges-map.hpp.
|
inline |
Initialize with ranges from i and map m.
Definition at line 181 of file ranges-map.hpp.
|
inline |
Move iterator to next range (if possible)
Definition at line 198 of file ranges-map.hpp.
|
protected |
Input range.
Definition at line 85 of file ranges-map.hpp.
|
protected |
Map for ranges.
Definition at line 87 of file ranges-map.hpp.