COIN-OR::LEMON - Graph Library

Changeset 2204:5617107d27e9 in lemon-0.x


Ignore:
Timestamp:
09/06/06 12:28:13 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2929
Message:

Some doc fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/map_iterator.h

    r1993 r2204  
    125125    /// Creates an iterator for the map, which iterates on the
    126126    /// given graph item set and filters all items which mapped value
    127     /// differ from \c _value.
     127    /// is not equal to the \c _value.
    128128    FilterMapIt(const Graph& _graph, const Map& _map, const Value& _value)
    129129      : Parent(_graph), map(_map), value(_value) {}
     
    131131    /// \brief Increment operator
    132132    ///
    133     /// Skips items which has not the given value.
     133    /// Skips items which has not mapped to the given value.
    134134    FilterMapIt& operator++() {
    135135      Parent::operator++();
Note: See TracChangeset for help on using the changeset viewer.