| 279 | |
| 280 | template <typename K> |
| 281 | std::pair<iterator, bool> Insert(K&& k) { |
| 282 | rep_.MaybeResize(); |
| 283 | auto r = rep_.FindOrInsert(std::forward<K>(k)); |
| 284 | const bool inserted = !r.found; |
| 285 | return {iterator(r.b, rep_.limit(), r.index), inserted}; |
| 286 | } |
| 287 | |
| 288 | Rep rep_; |
| 289 | }; |
nothing calls this directly
no test coverage detected