| 19288 | } |
| 19289 | |
| 19290 | iterator find(const key_type& key) |
| 19291 | { |
| 19292 | for (auto it = this->begin(); it != this->end(); ++it) |
| 19293 | { |
| 19294 | if (m_compare(it->first, key)) |
| 19295 | { |
| 19296 | return it; |
| 19297 | } |
| 19298 | } |
| 19299 | return Container::end(); |
| 19300 | } |
| 19301 | |
| 19302 | template<class KeyType, detail::enable_if_t< |
| 19303 | detail::is_usable_as_key_type<key_compare, key_type, KeyType>::value, int> = 0> |
no test coverage detected