[#absl-linked_hash_map-equal_range-034] = 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. == Synopses Declared in `<absl/container/linked_hash_map.h>` Returns the range of elements matching the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class K = xref:absl/linked_hash_map/key_type.adoc[key_type]> std::pair<iterator, iterator> xref:absl/linked_hash_map/equal_range-031.adoc[equal_range](xref:absl/linked_hash_map.adoc[key_arg<K>] const& key); ---- [.small]#xref:absl/linked_hash_map/equal_range-031.adoc[_» more..._]# Returns the range of elements matching the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class K = xref:absl/linked_hash_map/key_type.adoc[key_type]> std::pair<const_iterator, const_iterator> xref:absl/linked_hash_map/equal_range-032.adoc[equal_range](xref:absl/linked_hash_map.adoc[key_arg<K>] const& key) const; ---- [.small]#xref:absl/linked_hash_map/equal_range-032.adoc[_» more..._]# == Return Value * A pair of iterators bounding the matching elements. * A pair of const 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]#