| 364 | |
| 365 | template<typename T> |
| 366 | inline bool dictContains(IdentityDictionary<T>& dict, T key) { |
| 367 | return dict.find(key) != dict.end(); |
| 368 | } |
| 369 | |
| 370 | template<typename T> |
| 371 | inline void dictAdd(IdentityDictionary<T>& dict, T key) { |
no test coverage detected