| 94 | } |
| 95 | |
| 96 | bool Contains(const Key& key) const { |
| 97 | TReadGuard r(Mutex); |
| 98 | auto iter = Cache.FindWithoutPromote(key); |
| 99 | return iter != Cache.End(); |
| 100 | } |
| 101 | |
| 102 | template <class TCallbacks> |
| 103 | static const TPtr Get(TArgs... args) { |
no test coverage detected