| 1947 | } |
| 1948 | |
| 1949 | const_iterator find(const key_type& key) const { // NOLINT(modernize-use-nodiscard) |
| 1950 | ROBIN_HOOD_TRACE(this) |
| 1951 | const size_t idx = findIdx(key); |
| 1952 | return const_iterator{mKeyVals + idx, mInfo + idx}; |
| 1953 | } |
| 1954 | |
| 1955 | template <typename OtherKey> |
| 1956 | const_iterator find(const OtherKey& key, is_transparent_tag /*unused*/) const { |
no outgoing calls