[#indirectmap-find-06] = xref:indirectmap.adoc[indirectmap]::find :relfileprefix: ../ :mrdocs: Find the entry whose key dereferences to the given value. == Synopses Declared in `<indirectmap.h>` Find the entry whose key dereferences to the given value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:indirectmap/iterator.adoc[iterator] xref:indirectmap/find-0c.adoc[find](K const& key); ---- [.small]#xref:indirectmap/find-0c.adoc[_» more..._]# Find the entry whose key dereferences to the given value. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:indirectmap/const_iterator.adoc[const_iterator] xref:indirectmap/find-01.adoc[find](K const& key) const; ---- [.small]#xref:indirectmap/find-01.adoc[_» more..._]# == Return Value * An iterator to the found entry, or end() if not present. * A const iterator to the found entry, or end() if not present. == Parameters [cols="1,4"] |=== | Name| Description | *key* | The value whose address is used as the lookup key. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#