| 16515 | } |
| 16516 | |
| 16517 | iterator find(const Key& key) |
| 16518 | { |
| 16519 | for (auto it = this->begin(); it != this->end(); ++it) |
| 16520 | { |
| 16521 | if (it->first == key) |
| 16522 | { |
| 16523 | return it; |
| 16524 | } |
| 16525 | } |
| 16526 | return Container::end(); |
| 16527 | } |
| 16528 | |
| 16529 | const_iterator find(const Key& key) const |
| 16530 | { |
no test coverage detected