#include <cassert>
#include <map>
Go to the source code of this file.
|
template<typename Key , typename Value > |
Value const & | edm::findOrAssert (std::map< Key, Value > const &m, Key const &k) |
|
template<typename Key , typename Value > |
Value & | edm::findOrAssert (std::map< Key, Value > &m, Key const &k) |
|
template<typename Key , typename Value > |
Value const & | edm::findOrDefault (std::map< Key, Value > const &m, Key const &k, Value const &defaultValue) |
|
template<typename Key , typename Value > |
Value & | edm::findOrDefault (std::map< Key, Value > &m, Key const &k, Value &defaultValue) |
|
template<typename Key , typename Value > |
Value | edm::findOrDefault (std::map< Key, Value > const &m, Key const &k) |
|
template<typename Key , typename Value > |
Value & | edm::findOrInsert (std::map< Key, Value > &m, Key const &k) |
|