#include <multimapwdef.h>
template<class Key, class T, class Compare>
class multimapwithdefault< Key, T, Compare >
Definition at line 36 of file multimapwdef.h.
template<class Key , class T , class Compare >
template<class Key , class T , class Compare >
Definition at line 39 of file multimapwdef.h.
40 if (find(k) == this->end()) {
43 return (*(find(k))).second;
std::pair< const Key, T > value_type
template<class Key , class T , class Compare >
Definition at line 52 of file multimapwdef.h.
53 typename std::multimap<Key, T, Compare>::const_iterator start = this->lower_bound(k);
54 typename std::multimap<Key, T, Compare>::const_iterator end = this->upper_bound(k);
55 for (; start!=end; start++) {
56 if (start->second == val)
template<class Key , class T , class Compare >
Definition at line 46 of file multimapwdef.h.
47 if (this->find(k) == this->end()) {
50 return (*(this->find(k))).second;
std::pair< const Key, T > value_type
T std::multimap< K, T >::elements |
|
inherited |
K std::multimap< K, T >::keys |
|
inherited |
The documentation for this class was generated from the following file: