| 217 | |
| 218 | size_t count(const Key& k) const { return rep_.Find(k).found ? 1 : 0; } |
| 219 | iterator find(const Key& k) { |
| 220 | auto r = rep_.Find(k); |
| 221 | return r.found ? iterator(r.b, rep_.limit(), r.index) : end(); |
| 222 | } |
| 223 | const_iterator find(const Key& k) const { |
| 224 | auto r = rep_.Find(k); |
| 225 | return r.found ? const_iterator(r.b, rep_.limit(), r.index) : end(); |