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