Lookup
| 92 | |
| 93 | // Lookup |
| 94 | iterator find(const Key& key) { |
| 95 | auto it = lower_bound(key); |
| 96 | if (it != end() && !mLess(key, *it) && !mLess(*it, key)) { |
| 97 | return it; |
| 98 | } |
| 99 | return end(); |
| 100 | } |
| 101 | |
| 102 | const_iterator find(const Key& key) const { |
| 103 | auto it = lower_bound(key); |
nothing calls this directly
no test coverage detected