| 325 | } |
| 326 | |
| 327 | iterator lower_bound(const Key& key) { |
| 328 | ValueWithId search_key(key, 0); |
| 329 | return iterator(mTree.lower_bound(search_key)); |
| 330 | } |
| 331 | |
| 332 | const_iterator lower_bound(const Key& key) const { |
| 333 | ValueWithId search_key(key, 0); |
no test coverage detected