[#absl-linked_hash_map-equal_range-031] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::equal_range :relfileprefix: ../../ :mrdocs: Returns the range of elements matching the given key. == Synopsis Declared in `<absl/container/linked_hash_map.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class K = xref:absl/linked_hash_map/key_type.adoc[key_type]> std::pair<iterator, iterator> equal_range(xref:absl/linked_hash_map.adoc[key_arg<K>] const& key); ---- == Return Value A pair of iterators bounding the matching elements. == Parameters [cols="1,4"] |=== | Name| Description | *key* | The key to look up. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#