... | ... |
@@ -46,5 +46,5 @@ |
46 | 46 |
public: |
47 |
/// |
|
47 |
/// The key type of the map. |
|
48 | 48 |
typedef K Key; |
49 |
/// |
|
49 |
/// The value type of the map. (The type of objects associated with the keys). |
|
50 | 50 |
typedef T Value; |
... | ... |
@@ -251,5 +251,5 @@ |
251 | 251 |
|
252 |
/// \brief Map for storing values for the range |
|
252 |
/// \brief Map for storing values for keys from the range <tt>[0..size-1]</tt> |
|
253 | 253 |
/// |
254 |
/// The current map has the |
|
254 |
/// The current map has the <tt>[0..size-1]</tt> keyset and the values |
|
255 | 255 |
/// are stored in a \c std::vector<T> container. It can be used with |
... | ... |
@@ -831,3 +831,3 @@ |
831 | 831 |
///\code |
832 |
///combineMap |
|
832 |
///combineMap(m1,m2,std::plus<double>()) |
|
833 | 833 |
///\endcode |
... | ... |
@@ -964,4 +964,5 @@ |
964 | 964 |
///Template parameters \c K and \c V will become its |
965 |
///\c Key and \c Value. They must be given explicitly |
|
966 |
///because a functor does not provide such typedefs. |
|
965 |
///\c Key and \c Value. |
|
966 |
///In most cases they have to be given explicitly because a |
|
967 |
///functor typically does not provide such typedefs. |
|
967 | 968 |
/// |
... | ... |
@@ -1242,2 +1243,4 @@ |
1242 | 1243 |
///\sa BackInserterBoolMap |
1244 |
///\sa FrontInserterBoolMap |
|
1245 |
///\sa InserterBoolMap |
|
1243 | 1246 |
/// |
... | ... |
@@ -1307,3 +1310,3 @@ |
1307 | 1310 |
public: |
1308 |
typedef typename |
|
1311 |
typedef typename Functor::argument_type Key; |
|
1309 | 1312 |
typedef bool Value; |
... | ... |
@@ -1342,3 +1345,3 @@ |
1342 | 1345 |
public: |
1343 |
typedef typename |
|
1346 |
typedef typename Functor::argument_type Key; |
|
1344 | 1347 |
typedef bool Value; |
0 comments (0 inline)