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