1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11
15 // template<typename K>
16 // pair<iterator,iterator> equal_range(const K& x); // C++14
17 // template<typename K>
18 // pair<const_iterator,const_iterator> equal_range(const K& x) const;
26 using is_transparent
= void;
28 bool operator()(const std::pair
<int, int> &lhs
,
29 const std::pair
<int, int> &rhs
) const {
33 bool operator()(const std::pair
<int, int> &lhs
, int rhs
) const {
34 return lhs
.first
< rhs
;
37 bool operator()(int lhs
, const std::pair
<int, int> &rhs
) const {
38 return lhs
< rhs
.first
;
42 int main(int, char**) {
43 std::multimap
<std::pair
<int, int>, int, Comp
> s
{
44 {{2, 1}, 1}, {{1, 1}, 2}, {{1, 1}, 3}, {{1, 1}, 4}, {{2, 2}, 5}};
46 auto er
= s
.equal_range(1);
49 for (auto it
= er
.first
; it
!= er
.second
; it
++) {
50 assert(it
->first
.first
== 1);