| 19164 | } |
| 19165 | |
| 19166 | iterator find(const key_type& key) |
| 19167 | { |
| 19168 | for (auto it = this->begin(); it != this->end(); ++it) |
| 19169 | { |
| 19170 | if (m_compare(it->first, key)) |
| 19171 | { |
| 19172 | return it; |
| 19173 | } |
| 19174 | } |
| 19175 | return Container::end(); |
| 19176 | } |
| 19177 | |
| 19178 | template<class KeyType, detail::enable_if_t< |
| 19179 | detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value, int> = 0> |
no test coverage detected