| 5480 | const_iterator upper_bound(const KeyRef& k) const { return mutations.upper_bound(k); } |
| 5481 | |
| 5482 | const_iterator lower_bound(const KeyRef& k) const { return mutations.lower_bound(k); } |
| 5483 | |
| 5484 | // erase [begin, end) from the mutation map |
| 5485 | void erase(const const_iterator& begin, const const_iterator& end) { mutations.erase(begin, end); } |
no outgoing calls
no test coverage detected