Range iterator for pointwise offset (by some constant) More...
#include <ranges-offset.hpp>
Protected Attributes | |
I | i |
Input range. More... | |
int | c |
Offset for ranges. More... | |
Constructors and initialization | |
Offset (void) | |
Default constructor. More... | |
Offset (I &i, int c) | |
Initialize with ranges from i and offset c. More... | |
void | init (I &i, int c) |
Initialize with ranges from i and offset c. More... | |
Iteration control | |
bool | operator() (void) const |
Test whether iterator is still at a range or done. More... | |
void | operator++ (void) |
Move iterator to next range (if possible) More... | |
Range access | |
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... | |
Range iterator for pointwise offset (by some constant)
Definition at line 46 of file ranges-offset.hpp.
|
inline |
Default constructor.
Definition at line 85 of file ranges-offset.hpp.
|
inline |
Initialize with ranges from i and offset c.
Definition at line 95 of file ranges-offset.hpp.
|
inline |
Initialize with ranges from i and offset c.
Definition at line 89 of file ranges-offset.hpp.
|
inline |
Test whether iterator is still at a range or done.
Definition at line 104 of file ranges-offset.hpp.
|
inline |
Move iterator to next range (if possible)
Definition at line 99 of file ranges-offset.hpp.
|
inline |
Return smallest value of range.
Definition at line 110 of file ranges-offset.hpp.
|
inline |
Return largest value of range.
Definition at line 115 of file ranges-offset.hpp.
|
inline |
Return width of range (distance between minimum and maximum)
Definition at line 120 of file ranges-offset.hpp.
|
protected |
Input range.
Definition at line 49 of file ranges-offset.hpp.
|
protected |
Offset for ranges.
Definition at line 51 of file ranges-offset.hpp.