COIN-OR::LEMON - Graph Library

Changeset 43:17e76967c49f in lemon


Ignore:
Timestamp:
01/07/08 16:24:39 (16 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Children:
44:7bbd94715db5, 45:bc69cdfe171c
Phase:
public
Message:

Removed ConstMap::rebind and StdMap::rebind + doc improvements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/maps.h

    r34 r43  
    116116
    117117    template<typename T1>
    118     struct rebind {
    119       typedef ConstMap<K, T1> other;
    120     };
    121 
    122     template<typename T1>
    123118    ConstMap(const ConstMap<K, T1> &, const T &_v) : v(_v) {}
    124119  };
     
    244239    }   
    245240
    246     template <typename T1, typename C1 = std::less<T1> >
    247     struct rebind {
    248       typedef StdMap<Key, T1, C1> other;
    249     };
    250241  };
    251242
     
    393384  ///Simple wrapping of a map
    394385
    395   ///This \c concepts::ReadMap "read only map" returns the simple
     386  ///This \ref concepts::ReadMap "read only map" returns the simple
    396387  ///wrapping of the given map. Sometimes the reference maps cannot be
    397388  ///combined with simple read maps. This map adaptor wraps the given
     
    416407  };
    417408
    418   ///Simple writable wrapping of the map
    419 
    420   ///This \c concepts::WriteMap "write map" returns the simple
     409  ///Simple writable wrapping of a map
     410
     411  ///This \ref concepts::WriteMap "write map" returns the simple
    421412  ///wrapping of the given map. Sometimes the reference maps cannot be
    422413  ///combined with simple read-write maps. This map adaptor wraps the
     
    15541545    }
    15551546
    1556     /// Setter function of the map
     1547    /// The \c set function of the map
    15571548    void set(const Key& key, Value value) {
    15581549      if (value) {
Note: See TracChangeset for help on using the changeset viewer.