std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::equal_range
Min standard notice:
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().
# Declarations
std::pair<iterator, iterator> equal_range( const Key& key );
(since C++23)
std::pair<const_iterator, const_iterator> equal_range( const Key& key ) const;
(since C++23)
template< class K >
std::pair<iterator, iterator> equal_range( const K& x );
(since C++23)
template< class K >
std::pair<const_iterator, const_iterator> equal_range( const K& x ) const;
(since C++23)
# Parameters
key: key value to compare the elements tox: 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.
# Example
#include <iostream>
#include <flat_map>
template<typename I>
void print_equal_range(I first, I lb, I ub, I last)
{
for (I i{first}; i != lb; ++i)
std::cout << *i << ' ';
std::cout << "[ ";
for (I i{lb}; i != ub; ++i)
std::cout << *i << ' ';
std::cout << ") ";
for (I i{ub}; i != last; ++i)
std::cout << *i << ' ';
std::cout << '\n';
}
int main()
{
std::flat_multimap<int> c{4, 3, 2, 1, 3, 3};
std::cout << "c = ";
print_equal_range(begin(c), begin(c), end(c), end(c));
for (int key{}; key != 6; ++key)
{
std::cout << "key = " << key << "; equal range = ";
const auto [lb, ub] = c.equal_range(key);
print_equal_range(begin(c), lb, ub, end(c));
}
}