std::set<Key,Compare,Allocator>::equal_range (3) - Linux Manuals
std::set<Key,Compare,Allocator>::equal_range: std::set<Key,Compare,Allocator>::equal_range
Command to display std::set<Key,Compare,Allocator>::equal_range
manual in Linux: $ man 3 std::set<Key,Compare,Allocator>::equal_range
NAME
std::set<Key,Compare,Allocator>::equal_range - std::set<Key,Compare,Allocator>::equal_range
Synopsis
std::pair<iterator,iterator> equal_range( const Key& key ); (1)
std::pair<const_iterator,const_iterator> equal_range( const Key& key ) const; (2)
template< class K > (3) (since C++14)
std::pair<iterator,iterator> equal_range( const K& x );
template< class K > (4) (since C++14)
std::pair<const_iterator,const_iterator> equal_range( const K& x ) const;
Returns a range containing all elements with the given key in the container. The range is defined by two iterators, one pointing to the first element that is not less than key and another pointing to the first element greater than key. Alternatively, the first iterator may be obtained with lower_bound(), and the second with upper_bound().
1,2) Compares the keys to key.
3,4) Compares the keys to the value x. This overload only participates in overload resolution if the qualified-id Compare::is_transparent is valid and denotes a type. They allow calling this function without constructing an instance of Key.
This section is incomplete
Reason: explain better
Parameters
key - key value to compare the elements to
x - alternative value that can be compared to Key
Return value
std::pair containing a pair of iterators defining the wanted range: the first pointing to the first element that is not less than key and the second pointing to the first element greater than key.
If there are no elements not less than key, past-the-end (see end()) iterator is returned as the first element. Similarly if there are no elements greater than key, past-the-end iterator is returned as the second element.
Complexity
Logarithmic in the size of the container.
Example
See also
finds element with specific key
find (public member function)
returns an iterator to the first element greater than the given key
upper_bound (public member function)
returns an iterator to the first element not less than the given key
lower_bound (public member function)
Pages related to std::set<Key,Compare,Allocator>::equal_range
- std::set<Key,Compare,Allocator>::emplace (3) - std::set<Key,Compare,Allocator>::emplace
- std::set<Key,Compare,Allocator>::emplace_hint (3) - std::set<Key,Compare,Allocator>::emplace_hint
- std::set<Key,Compare,Allocator>::empty (3) - std::set<Key,Compare,Allocator>::empty
- std::set<Key,Compare,Allocator>::end,std::set<Key,Compare,Allocator>::cend (3) - std::set<Key,Compare,Allocator>::end,std::set<Key,Compare,Allocator>::cend
- std::set<Key,Compare,Allocator>::erase (3) - std::set<Key,Compare,Allocator>::erase
- std::set<Key,Compare,Allocator>::extract (3) - std::set<Key,Compare,Allocator>::extract
- std::set<Key,Compare,Allocator>::begin,std::set<Key,Compare,Allocator>::cbegin (3) - std::set<Key,Compare,Allocator>::begin,std::set<Key,Compare,Allocator>::cbegin
- std::set<Key,Compare,Allocator>::clear (3) - std::set<Key,Compare,Allocator>::clear
- std::set<Key,Compare,Allocator>::contains (3) - std::set<Key,Compare,Allocator>::contains
- std::set<Key,Compare,Allocator>::count (3) - std::set<Key,Compare,Allocator>::count
- std::set<Key,Compare,Allocator>::find (3) - std::set<Key,Compare,Allocator>::find
- std::set<Key,Compare,Allocator>::get_allocator (3) - std::set<Key,Compare,Allocator>::get_allocator
- std::set<Key,Compare,Allocator>::insert (3) - std::set<Key,Compare,Allocator>::insert
- std::set<Key,Compare,Allocator>::key_comp (3) - std::set<Key,Compare,Allocator>::key_comp
- std::set<Key,Compare,Allocator>::lower_bound (3) - std::set<Key,Compare,Allocator>::lower_bound
- std::set<Key,Compare,Allocator>::max_size (3) - std::set<Key,Compare,Allocator>::max_size
- std::set<Key,Compare,Allocator>::merge (3) - std::set<Key,Compare,Allocator>::merge
- std::set<Key,Compare,Allocator>::operator= (3) - std::set<Key,Compare,Allocator>::operator=
- std::set<Key,Compare,Allocator>::rbegin,std::set<Key,Compare,Allocator>::crbegin (3) - std::set<Key,Compare,Allocator>::rbegin,std::set<Key,Compare,Allocator>::crbegin
- std::set<Key,Compare,Allocator>::rend,std::set<Key,Compare,Allocator>::crend (3) - std::set<Key,Compare,Allocator>::rend,std::set<Key,Compare,Allocator>::crend
- std::set<Key,Compare,Allocator>::set (3) - std::set<Key,Compare,Allocator>::set
- std::set<Key,Compare,Allocator>::size (3) - std::set<Key,Compare,Allocator>::size
- std::set<Key,Compare,Allocator>::swap (3) - std::set<Key,Compare,Allocator>::swap
- std::set<Key,Compare,Allocator>::upper_bound (3) - std::set<Key,Compare,Allocator>::upper_bound
- std::set<Key,Compare,Allocator>::value_comp (3) - std::set<Key,Compare,Allocator>::value_comp
- std::set<Key,Compare,Allocator>::~set (3) - std::set<Key,Compare,Allocator>::~set
- std::set (3) - std::set