(C++17) | ||||
Sequence | ||||
(C++11) | ||||
(C++26) | ||||
(C++26) | ||||
(C++11) | ||||
Associative | ||||
Unordered associative | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
Adaptors | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
Views | ||||
(C++20) | ||||
(C++23) | ||||
Tables | ||||
Iterator invalidation | ||||
Member function table | ||||
Non-member function table |
Member functions | |||||||
Non-member functions | |||||||
| |||||||
Deduction guides(C++17) |
std::pair<iterator, iterator> equal_range(const Key& key); | (1) | (constexpr since C++26) |
std::pair<const_iterator, const_iterator> equal_range(const Key& key)const; | (2) | (constexpr since C++26) |
template<class K> std::pair<iterator, iterator> equal_range(const K& x); | (3) | (since C++14) (constexpr since C++26) |
template<class K> std::pair<const_iterator, const_iterator> | (4) | (since C++14) (constexpr since C++26) |
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 isnot less than the given key and another pointing to the first element greater than the given key.
Alternatively, the first iterator may be obtained withlower_bound(), and the second withupper_bound().
Compare
istransparent. It allows calling this function without constructing an instance ofKey
.Contents |
key | - | key value to compare the elements to |
x | - | alternative value that can be compared toKey |
std::pair containing a pair of iterators defining the wanted range:
Since | (since C++11) |
Logarithmic in the size of the container.
Feature-test macro | Value | Std | Feature |
---|---|---|---|
__cpp_lib_generic_associative_lookup | 201304L | (C++14) | Heterogeneous comparison lookup inassociative containers, for overloads(3,4) |
#include <iostream>#include <map> int main(){std::multimap<int,char> dict{{1,'A'},{2,'B'},{2,'C'},{2,'D'},{4,'E'},{3,'F'}}; auto range= dict.equal_range(2); for(auto i= range.first; i!= range.second;++i)std::cout<< i->first<<": "<< i->second<<'\n';}
Output:
2: B2: C2: D
finds element with specific key (public member function)[edit] | |
(C++20) | checks if the container contains element with specific key (public member function)[edit] |
returns the number of elements matching specific key (public member function)[edit] | |
returns an iterator to the first elementgreater than the given key (public member function)[edit] | |
returns an iterator to the first elementnot less than the given key (public member function)[edit] | |
returns range of elements matching a specific key (function template)[edit] |