| 31 | |
| 32 | template <typename K, typename V> |
| 33 | static bool hasKey(const std::unordered_map<K, V>& map, const K& key) |
| 34 | { |
| 35 | return map.find(key) != map.end(); |
| 36 | } |
| 37 | |
| 38 | template <typename T> |
| 39 | inline std::string to_string(const T& v) |
no outgoing calls
no test coverage detected