| 22 | |
| 23 | template <class Map, class K> |
| 24 | inline auto MapFindPtr(const Map& map Y_LIFETIME_BOUND, const K& key) { |
| 25 | auto i = map.find(key); |
| 26 | |
| 27 | return (i == map.end() ? nullptr : &i->second); |
| 28 | } |
| 29 | |
| 30 | /** helper for THashMap/TMap */ |
| 31 | template <class Derived> |
no test coverage detected