[#absl-linked_hash_set-equal_range-05a] = 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. == Synopsis Declared in `<absl/container/linked_hash_set.h>` [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> equal_range(xref:absl/linked_hash_set.adoc[key_arg<K>] const& key) const; ---- == Return Value 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]#