[#BloombergLP-bslstl-HashTable-06-find-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::xref:BloombergLP/bslstl/HashTable-06.adoc[HashTable]::find :relfileprefix: ../../../ :mrdocs: `find` overloads == Synopses Declared in `<bslstl_hashtable.h>` Return the address of a link whose key has the same value as the specified `key` (according to this hash‐table's `comparator`), and a null pointer value if no such link exists. If this hash‐table contains more than one element having the supplied `key`, return the first such element (from the contiguous sequence of elements having the same key). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslalg/BidirectionalLink.adoc[bslalg::BidirectionalLink]* xref:BloombergLP/bslstl/HashTable-06/find-0f.adoc[find](xref:BloombergLP/bslstl/HashTable-06/KeyType.adoc[KeyType] const& key) const; ---- [.small]#xref:BloombergLP/bslstl/HashTable-06/find-0f.adoc[_» more..._]# Return the address of a link whose key is equivalent to the specified `key` (according to this hash‐table's `comparator`), and a null pointer value if no such link exists. If this hash‐table contains more than one element having the supplied `key`, return the first such element (from the contiguous sequence of elements having the same key). The behavior is undefined unless `key` is equivalent to the elements of at most one equivalent‐key group. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class LOOKUP_KEY> xref:BloombergLP/bslalg/BidirectionalLink.adoc[bslalg::BidirectionalLink]* xref:BloombergLP/bslstl/HashTable-06/find-06.adoc[find](LOOKUP_KEY const& key) const requires BloombergLP::bslmf::IsTransparentPredicate<HASHER, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,LOOKUP_KEY>::value; ---- [.small]#xref:BloombergLP/bslstl/HashTable-06/find-06.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#