| 400 | } |
| 401 | |
| 402 | iterator find(const Key& key) { |
| 403 | ValueWithId search_key(value_type(key, Value()), 0); |
| 404 | auto it = mTree.lower_bound(search_key); |
| 405 | if (it != mTree.end() && it->value.first == key) { |
| 406 | return iterator(it); |
| 407 | } |
| 408 | return end(); |
| 409 | } |
| 410 | |
| 411 | const_iterator find(const Key& key) const { |
| 412 | ValueWithId search_key(value_type(key, Value()), 0); |
nothing calls this directly
no test coverage detected