Return the range of elements equivalent to key.
Declared in <bslstl_unorderedset.h>
Return the range of elements equivalent to key.
bsl::pair<unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::iterator, unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::iterator>
equal_range(key_type const& key);
» more...
Return the range of elements equivalent to key.
bsl::pair<unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::const_iterator, unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::const_iterator>
equal_range(key_type const& key) const;
» more...
Return the range of elements equivalent to key.
template<class LOOKUP_KEY>
pair<iterator, iterator>
equal_range(LOOKUP_KEY const& key)
requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value
&& BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value;
» more...
Return the range of elements equivalent to key.
template<class LOOKUP_KEY>
pair<const_iterator, const_iterator>
equal_range(LOOKUP_KEY const& key) const
requires BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value
&& BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value;
» more...
| Name | Description |
|---|---|
| key | key value to look up |