| 171 | } |
| 172 | |
| 173 | iterator find(const Key& key) |
| 174 | { |
| 175 | for (auto it = this->begin(); it != this->end(); ++it) |
| 176 | { |
| 177 | if (it->first == key) |
| 178 | { |
| 179 | return it; |
| 180 | } |
| 181 | } |
| 182 | return Container::end(); |
| 183 | } |
| 184 | |
| 185 | const_iterator find(const Key& key) const |
| 186 | { |
no test coverage detected