| 41 | const_iterator lower_bound(const K& key) const { return m.lower_bound(&key); } |
| 42 | size_type erase(const K& key) { return m.erase(&key); } |
| 43 | size_type count(const K& key) const { return m.count(&key); } |
| 44 | |
| 45 | // passthrough |
| 46 | bool empty() const { return m.empty(); } |
no outgoing calls