find overloads
Declared in <bslstl_set.h>
Return an iterator to the element equivalent to key, or end.
iterator
find(key_type const& key);
» more...
Return a const iterator to the element equivalent to key, or end.
const_iterator
find(key_type const& key) const;
» more...
Return an iterator to the element equivalent to key, or end.
template<class LOOKUP_KEY>
iterator
find(LOOKUP_KEY const& key)
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
LOOKUP_KEY>::value;
» more...
Return a const iterator to the element equivalent to key, or end.
template<class LOOKUP_KEY>
const_iterator
find(LOOKUP_KEY const& key) const
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
LOOKUP_KEY>::value;
» more...
end()end()| Name | Description |
|---|---|
| key | key value to look up |