lemon/bits/vector_map.h
changeset 2256 b22dfb6c5ff3
parent 2031 080d51024ac5
child 2260 4274224f8a7d
equal deleted inserted replaced
15:9a6725188625 16:8eb213e7bc36
    40   ///
    40   ///
    41   /// \brief Graph map based on the std::vector storage.
    41   /// \brief Graph map based on the std::vector storage.
    42   ///
    42   ///
    43   /// The VectorMap template class is graph map structure what
    43   /// The VectorMap template class is graph map structure what
    44   /// automatically updates the map when a key is added to or erased from
    44   /// automatically updates the map when a key is added to or erased from
    45   /// the map. This map factory uses the allocators to implement 
    45   /// the map. This map type uses the std::vector to store the values.
    46   /// the container functionality. This map factory
       
    47   /// uses the std::vector to implement the container function.
       
    48   ///
    46   ///
    49   /// \param Notifier The AlterationNotifier that will notify this map.
    47   /// \param Notifier The AlterationNotifier that will notify this map.
    50   /// \param Item The item type of the graph items.
    48   /// \param Item The item type of the graph items.
    51   /// \param Value The value type of the map.
    49   /// \param Value The value type of the map.
    52   /// 
    50   ///