[#absl-linked_hash_set-equal_range-055] = xref:absl.adoc[absl]::xref:absl/linked_hash_set.adoc[linked_hash_set]::equal_range :relfileprefix: ../../ :mrdocs: Returns the range of elements matching the given key. == Synopses Declared in `<absl/container/linked_hash_set.h>` Returns the range of elements matching the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename K = xref:absl/linked_hash_set/key_type.adoc[key_type]> std::pair<iterator, iterator> xref:absl/linked_hash_set/equal_range-08.adoc[equal_range](xref:absl/linked_hash_set.adoc[key_arg<K>] const& key); ---- [.small]#xref:absl/linked_hash_set/equal_range-08.adoc[_» more..._]# Returns the range of elements matching the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename K = xref:absl/linked_hash_set/key_type.adoc[key_type]> std::pair<const_iterator, const_iterator> xref:absl/linked_hash_set/equal_range-05a.adoc[equal_range](xref:absl/linked_hash_set.adoc[key_arg<K>] const& key) const; ---- [.small]#xref:absl/linked_hash_set/equal_range-05a.adoc[_» more..._]# == Return Value * A pair of iterators bounding the matching range. * A pair of const iterators bounding the matching range. == Parameters [cols="1,4"] |=== | Name| Description | *key* | The key to search for. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#