| 335 | } |
| 336 | |
| 337 | iterator upper_bound(const Key& key) { |
| 338 | ValueWithId search_key(key, mNextId); // Use mNextId to get upper bound |
| 339 | return iterator(mTree.upper_bound(search_key)); |
| 340 | } |
| 341 | |
| 342 | const_iterator upper_bound(const Key& key) const { |
| 343 | ValueWithId search_key(key, mNextId); |
nothing calls this directly
no test coverage detected