[#BloombergLP-bdlc-FlatHashTable-find-085] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/FlatHashTable.adoc[FlatHashTable]::find :relfileprefix: ../../../ :mrdocs: Return an iterator to the entry equivalent to `key`, or `end()`. == Synopsis Declared in `<bdlc_flathashtable.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:BloombergLP/bdlc/FlatHashTable/const_iterator.adoc[const_iterator] find(LOOKUP_KEY const& key) const requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value; ---- == Description Return an iterator representing the position of the entry in this flat hash table that is equivalent to the specified `key`, or `end()` if no such entry exists in this table. == Return Value iterator to the matching entry, or `end()` if none == Parameters [cols="1,4"] |=== | Name| Description | *key* | key to look up |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#