|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Concept for basic graph iterators. More...
#include <graph-dry.H>
Concept for basic graph iterators.
A type satisfies BasicGraphIterator if it provides the fundamental iteration interface used throughout Aleph-w graph implementations.
Required expressions:
it.has_curr() : Returns bool, true if iterator points to valid elementit.next() : Advances iterator to next element, returns voidit.get_curr() : Returns current element (pointer), may throw if invalid| It | The iterator type to check |
Definition at line 152 of file graph-dry.H.