find overloads
Declared in <bslstl_hashtable.h>
Return the address of a node whose key matches key, or null.
bslalg::BidirectionalLink*
find(KeyType const& key) const;
» more...
Return the address of a node with a key equivalent to key, or null.
template<class LOOKUP_KEY>
bslalg::BidirectionalLink*
find(LOOKUP_KEY const& key) const
requires BloombergLP::bslmf::IsTransparentPredicate<HASHER, LOOKUP_KEY>::value
&& BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,LOOKUP_KEY>::value;
» more...
address of a matching node, or null if none exists
| Name | Description |
|---|---|
| key | key to search for |