| 435 | } |
| 436 | |
| 437 | iterator lower_bound(const Key& key) { |
| 438 | ValueWithId search_key(value_type(key, Value()), 0); |
| 439 | return iterator(mTree.lower_bound(search_key)); |
| 440 | } |
| 441 | |
| 442 | const_iterator lower_bound(const Key& key) const { |
| 443 | ValueWithId search_key(value_type(key, Value()), 0); |
no test coverage detected