| 214 | inline void next(const graph *ref) { ++pos; } |
| 215 | inline void begin(const graph *ref) { pos = 0; } |
| 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; } |
no test coverage detected