[#absl-linked_hash_map-find-04] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::find :relfileprefix: ../../ :mrdocs: Finds the element with the given key. == Synopses Declared in `<absl/container/linked_hash_map.h>` Finds the element with the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class K = xref:absl/linked_hash_map/key_type.adoc[key_type]> xref:absl/linked_hash_map/iterator.adoc[iterator] xref:absl/linked_hash_map/find-08.adoc[find](xref:absl/linked_hash_map.adoc[key_arg<K>] const& key); ---- [.small]#xref:absl/linked_hash_map/find-08.adoc[_» more..._]# Finds the element with the given key. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class K = xref:absl/linked_hash_map/key_type.adoc[key_type]> xref:absl/linked_hash_map/const_iterator.adoc[const_iterator] xref:absl/linked_hash_map/find-07.adoc[find](xref:absl/linked_hash_map.adoc[key_arg<K>] const& key) const; ---- [.small]#xref:absl/linked_hash_map/find-07.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]#