| 38 | iterator find(const K& key) { return m.find(&key); } |
| 39 | const_iterator find(const K& key) const { return m.find(&key); } |
| 40 | iterator lower_bound(const K& key) { return m.lower_bound(&key); } |
| 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); } |
no outgoing calls