| 203 | |
| 204 | template <class TheKey> |
| 205 | bool contains(const TheKey& key) const { |
| 206 | return rep.find(key) != rep.end(); |
| 207 | } |
| 208 | template <class TheKey> |
| 209 | bool contains(const TheKey& key, insert_ctx& ins) { |
| 210 | return rep.find_i(key, ins) != rep.end(); |