Returns the range of elements matching the given key.
Declared in <absl/container/linked_hash_map.h>
Returns the range of elements matching the given key.
template<class K = key_type>
std::pair<iterator, iterator>
equal_range(key_arg<K> const& key);
» more...
Returns the range of elements matching the given key.
template<class K = key_type>
std::pair<const_iterator, const_iterator>
equal_range(key_arg<K> const& key) const;
» more...
| Name | Description |
|---|---|
| key | The key to look up. |