| 16500 | : Container{init, alloc} {} |
| 16501 | |
| 16502 | std::pair<iterator, bool> emplace(const key_type& key, T&& t) |
| 16503 | { |
| 16504 | for (auto it = this->begin(); it != this->end(); ++it) |
| 16505 | { |
| 16506 | if (it->first == key) |
| 16507 | { |
| 16508 | return {it, false}; |
| 16509 | } |
| 16510 | } |
| 16511 | Container::emplace_back(key, t); |
| 16512 | return {--this->end(), true}; |
| 16513 | } |
| 16514 | |
| 16515 | T& operator[](const Key& key) |
| 16516 | { |
no test coverage detected