Changeset 2204:5617107d27e9 in lemon-0.x for lemon/map_iterator.h
- Timestamp:
- 09/06/06 12:28:13 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2929
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/map_iterator.h
r1993 r2204 125 125 /// Creates an iterator for the map, which iterates on the 126 126 /// given graph item set and filters all items which mapped value 127 /// differ from\c _value.127 /// is not equal to the \c _value. 128 128 FilterMapIt(const Graph& _graph, const Map& _map, const Value& _value) 129 129 : Parent(_graph), map(_map), value(_value) {} … … 131 131 /// \brief Increment operator 132 132 /// 133 /// Skips items which has not the given value.133 /// Skips items which has not mapped to the given value. 134 134 FilterMapIt& operator++() { 135 135 Parent::operator++();
Note: See TracChangeset
for help on using the changeset viewer.