|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Concept for node adjacency iterators. More...
#include <graph-dry.H>
Concept for node adjacency iterators.
An adjacency iterator iterates over arcs connected to a specific node. It must satisfy GraphArcIterator and additionally provide get_tgt_node() to retrieve the node at the other end of each arc.
Additional required expression:
it.get_tgt_node() : Returns pointer to the target node of current arcThis is the most specific iterator concept, typically satisfied by GT::Node_Arc_Iterator.
| It | The iterator type to check |
| Node | The expected node type (not pointer) |
| Arc | The expected arc type (not pointer) |
Definition at line 234 of file graph-dry.H.