| 16594 | } |
| 16595 | |
| 16596 | iterator find(const Key& key) |
| 16597 | { |
| 16598 | for (auto it = this->begin(); it != this->end(); ++it) |
| 16599 | { |
| 16600 | if (it->first == key) |
| 16601 | { |
| 16602 | return it; |
| 16603 | } |
| 16604 | } |
| 16605 | return Container::end(); |
| 16606 | } |
| 16607 | |
| 16608 | const_iterator find(const Key& key) const |
| 16609 | { |