| 19202 | } |
| 19203 | |
| 19204 | iterator find(const key_type& key) |
| 19205 | { |
| 19206 | for (auto it = this->begin(); it != this->end(); ++it) |
| 19207 | { |
| 19208 | if (m_compare(it->first, key)) |
| 19209 | { |
| 19210 | return it; |
| 19211 | } |
| 19212 | } |
| 19213 | return Container::end(); |
| 19214 | } |
| 19215 | |
| 19216 | template<class KeyType, detail::enable_if_t< |
| 19217 | detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value, int> = 0> |
no test coverage detected