upper_bound overloads

Synopses

Declared in <bslstl_multiset.h>

Return an iterator providing modifiable access to the first (i.e., ordered least) value_type object in this multiset greater than the specified key, and the past‐the‐end iterator if this multiset does not contain a value_type object greater‐than key. Note that this function returns the last position before which a value_type object equivalent to key could be inserted into the ordered sequence maintained by this multiset, while preserving its ordering.

Return an iterator providing non‐modifiable access to the first (i.e., ordered least) value_type object in this multiset greater than the specified key, and the past‐the‐end iterator if this multiset does not contain a value_type object greater‐than key. Note that this function returns the last position before which a value_type object equivalent to key could be inserted into the ordered sequence maintained by this multiset, while preserving its ordering.

const_iterator
upper_bound(key_type const& key) const;

Return an iterator providing modifiable access to the first (i.e., ordered least) value_type object in this multiset greater than the specified key, and the past‐the‐end iterator if this multiset does not contain a value_type object greater‐than key. Note that this function returns the last position before which a value_type object equivalent to key could be inserted into the ordered sequence maintained by this multiset, while preserving its ordering.

template<class LOOKUP_KEY>
iterator
upper_bound(LOOKUP_KEY const& key)
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
                                                   LOOKUP_KEY>::value;

Return an iterator providing non‐modifiable access to the first (i.e., ordered least) value_type object in this multiset greater than the specified key, and the past‐the‐end iterator if this multiset does not contain a value_type object greater‐than key. Note that this function returns the last position before which a value_type object equivalent to key could be inserted into the ordered sequence maintained by this multiset, while preserving its ordering.

template<class LOOKUP_KEY>
const_iterator
upper_bound(LOOKUP_KEY const& key) const
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
                                                   LOOKUP_KEY>::value;

Created with MrDocs