| 16422 | : Container{init, alloc} {} |
| 16423 | |
| 16424 | std::pair<iterator, bool> emplace(const key_type& key, T&& t) |
| 16425 | { |
| 16426 | for (auto it = this->begin(); it != this->end(); ++it) |
| 16427 | { |
| 16428 | if (it->first == key) |
| 16429 | { |
| 16430 | return {it, false}; |
| 16431 | } |
| 16432 | } |
| 16433 | Container::emplace_back(key, t); |
| 16434 | return {--this->end(), true}; |
| 16435 | } |
| 16436 | |
| 16437 | T& operator[](const Key& key) |
| 16438 | { |
no test coverage detected