| 194 | |
| 195 | template <class TheKey> |
| 196 | const_iterator find(const TheKey& key) const { |
| 197 | return rep.find(key); |
| 198 | } |
| 199 | template <class TheKey> |
| 200 | iterator find(const TheKey& key, insert_ctx& ins) { |
| 201 | return rep.find_i(key, ins); |
no test coverage detected