lemon/iterable_maps.h
changeset 1953 d4f411003580
parent 1931 6abf67b02ff5
child 1956 a055123339d5
     1.1 --- a/lemon/iterable_maps.h	Fri Feb 03 14:22:45 2006 +0000
     1.2 +++ b/lemon/iterable_maps.h	Fri Feb 03 15:58:24 2006 +0000
     1.3 @@ -199,7 +199,7 @@
     1.4        ///
     1.5        /// Creates an iterator. It iterates on the 
     1.6        /// keys which mapped to true.
     1.7 -      /// \param map The IterableIntMap
     1.8 +      /// \param _map The IterableIntMap
     1.9        TrueIt(const IterableBoolMap& _map) 
    1.10          : Parent(_map.sep > 0 ? _map.array[_map.sep - 1] : INVALID), 
    1.11            map(&_map) {}
    1.12 @@ -239,7 +239,7 @@
    1.13        ///
    1.14        /// Creates an iterator. It iterates on the 
    1.15        /// keys which mapped to false.
    1.16 -      /// \param map The IterableIntMap
    1.17 +      /// \param _map The IterableIntMap
    1.18        FalseIt(const IterableBoolMap& _map) 
    1.19          : Parent(_map.sep < (int)_map.array.size() ? 
    1.20                   _map.array.back() : INVALID), map(&_map) {}
    1.21 @@ -278,7 +278,7 @@
    1.22        ///
    1.23        /// Creates an iterator. It iterates on the 
    1.24        /// keys which mapped to false.
    1.25 -      /// \param map The IterableIntMap
    1.26 +      /// \param _map The IterableIntMap
    1.27        /// \param value Which elements should be iterated.
    1.28        ItemIt(const IterableBoolMap& _map, bool value) 
    1.29          : Parent(value ? (_map.sep > 0 ? _map.array[_map.sep - 1] : INVALID) :