Changeset 852:d50d89b86870 in lemon-0.x for src/hugo
- Timestamp:
- 09/14/04 19:41:40 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1151
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/path.h
r837 r852 126 126 } 127 127 128 /// Checks validity of a node or edge iterator.129 template<typename It>130 static131 bool valid(const It &i) { return i.valid(); }132 133 /// Steps the given node or edge iterator.134 template<typename It>135 static136 It& next(It &e) {137 return ++e;138 }139 140 128 /// \brief Returns node iterator pointing to the head node of the 141 129 /// given edge iterator. … … 161 149 * Of course it converts to Graph::Edge 162 150 * 163 * \todo Its interface differs from the standard edge iterator.164 * Yes, it shouldn't.165 151 */ 166 152 class EdgeIt { … … 210 196 * Of course it converts to Graph::Node 211 197 * 212 * \todo Its interface differs from the standard node iterator.213 * Yes, it shouldn't.214 198 */ 215 199 class NodeIt {
Note: See TracChangeset
for help on using the changeset viewer.