Lumiera
0.pre.03
»edit your freedom«
|
#include "lib/itertools.hpp"
Standard functionality to build up any iterator tool.
IterTool exposes the frontend functions necessary to comply to the Lumiera Forward Iterator concept. The protected part provides the iteration control building blocks to drive the processing/filter logic, which is implemented in the specific core for each tool.
Definition at line 164 of file itertools.hpp.
Public Types | |
typedef CORE::pointer | pointer |
typedef CORE::reference | reference |
typedef CORE::value_type | value_type |
Public Member Functions | |
IterTool (CORE &&setup) | |
bool | empty () const |
bool | isValid () const |
operator bool () const | |
reference | operator* () const |
IterTool & | operator++ () |
pointer | operator-> () const |
Protected Member Functions | |
void | _maybe_throw () const |
bool | hasData () const |
bool | iterate () |
Protected Attributes | |
CORE | core_ |