| 216 | inline void end(const graph *ref) { pos = ref->_nodes.size(); } |
| 217 | inline node *&get(graph *ref) { return ref->_nodes[pos]; } |
| 218 | inline const node *get(const graph *ref) { return ref->_nodes[pos]; } |
| 219 | inline bool cmp(const node_iter &s) const { return pos != s.pos; } |
| 220 | }; |
| 221 | SETUP_ITERATORS(graph, node *, node_iter) |