equal
deleted
inserted
replaced
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 /// |