BloombergLP::bdlc::FlatHashMap::find

find overloads

Synopses

Declared in <bdlc_flathashmap.h>

Return an iterator referring to the modifiable element in this map having the specified key, or end() if no such entry exists in this map.

FlatHashMap<KEY, VALUE, HASH, EQUAL>::iterator
find(KEY const& key);
» more...

Return a const_iterator referring to the element in this map having the specified key, or end() if no such entry exists in this map.

FlatHashMap<KEY, VALUE, HASH, EQUAL>::const_iterator
find(KEY const& key) const;
» more...

Return an iterator referring to the modifiable element in this map having the key equivalent to the specified key, or end() if no such entry exists in this map.

template<class LOOKUP_KEY>
iterator
find(LOOKUP_KEY const& key)
requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value
         && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value;
» more...

Return a const_iterator referring to the element in this map having the specified key, or end() if no such entry exists in this map.

template<class LOOKUP_KEY>
const_iterator
find(LOOKUP_KEY const& key) const
requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value
         && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value;
» more...