[#absl-linked_hash_set-find-0b] = xref:absl.adoc[absl]::xref:absl/linked_hash_set.adoc[linked_hash_set]::find :relfileprefix: ../../ :mrdocs: Finds the element with the given key. == Synopses Declared in `<absl/container/linked_hash_set.h>` Finds the element with the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename K = xref:absl/linked_hash_set/key_type.adoc[key_type]> xref:absl/linked_hash_set/iterator.adoc[iterator] xref:absl/linked_hash_set/find-06.adoc[find](xref:absl/linked_hash_set.adoc[key_arg<K>] const& key); ---- [.small]#xref:absl/linked_hash_set/find-06.adoc[_» more..._]# Finds the element with the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename K = xref:absl/linked_hash_set/key_type.adoc[key_type]> xref:absl/linked_hash_set/const_iterator.adoc[const_iterator] xref:absl/linked_hash_set/find-0c.adoc[find](xref:absl/linked_hash_set.adoc[key_arg<K>] const& key) const; ---- [.small]#xref:absl/linked_hash_set/find-0c.adoc[_» more..._]# == Return Value * An iterator to the element, or `end()` if not found. * A const iterator to the element, or `end()` if not found. == Parameters [cols="1,4"] |=== | Name| Description | *key* | The key to search for. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#