| 369 | // object in the heap for performance solution. |
| 370 | template <typename K> |
| 371 | iterator Find(const K& key) { |
| 372 | return FindWithHash(key, hashfn_(key)); |
| 373 | } |
| 374 | |
| 375 | template <typename K> |
| 376 | const_iterator Find(const K& key) const { |
nothing calls this directly
no outgoing calls
no test coverage detected