1 // Copyright (C) 2021-2025 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // { dg-do run { target c++20 } }
19 // { dg-add-options no_pch }
21 #include <unordered_map>
23 #ifndef __cpp_lib_generic_unordered_lookup
24 # error "Feature-test macro for generic lookup missing in <unordered_map>"
25 #elif __cpp_lib_generic_unordered_lookup < 201811L
26 # error "Feature-test macro for generic lookup has wrong value in <unordered_map>"
29 #include <testsuite_hooks.h>
33 typedef void is_transparent
;
35 bool operator()(int i
, long l
) const { return i
== l
; }
36 bool operator()(long l
, int i
) const { return l
== i
; }
37 bool operator()(int i
, int j
) const { ++count
; return i
== j
; }
46 typedef void is_transparent
;
48 std::size_t operator()(int i
) const { ++count
; return i
; }
49 std::size_t operator()(long l
) const { return l
; }
56 using test_type
= std::unordered_map
<int, char, Hash
, Equal
>;
58 test_type x
{ { 1, '2' }, { 3, '4' } };
59 const test_type
& cx
= x
;
67 VERIFY( x
.contains(1L) );
70 VERIFY( it
!= x
.end() && it
->second
== '2' );
72 VERIFY( it
== x
.end() );
74 auto cit
= cx
.find(3L);
75 VERIFY( cit
!= cx
.end() && cit
->second
== '4' );
77 VERIFY( cit
== cx
.end() );
79 VERIFY( Hash::count
== 0 );
80 VERIFY( Equal::count
== 0 );
82 static_assert(std::is_same
<decltype(it
), test_type::iterator
>::value
,
83 "find returns iterator");
84 static_assert(std::is_same
<decltype(cit
), test_type::const_iterator
>::value
,
85 "const find returns const_iterator");
99 auto cn
= cx
.count(3L);
104 VERIFY( Hash::count
== 0 );
105 VERIFY( Equal::count
== 0 );
114 auto it
= x
.equal_range(1L);
115 VERIFY( it
.first
!= it
.second
&& it
.first
->second
== '2' );
116 it
= x
.equal_range(2L);
117 VERIFY( it
.first
== it
.second
&& it
.first
== x
.end() );
119 auto cit
= cx
.equal_range(1L);
120 VERIFY( cit
.first
!= cit
.second
&& cit
.first
->second
== '2' );
121 cit
= cx
.equal_range(2L);
122 VERIFY( cit
.first
== cit
.second
&& cit
.first
== cx
.end() );
124 VERIFY( Hash::count
== 0 );
125 VERIFY( Equal::count
== 0 );
127 using pair
= std::pair
<test_type::iterator
, test_type::iterator
>;
128 static_assert(std::is_same
<decltype(it
), pair
>::value
,
129 "equal_range returns pair<iterator, iterator>");
130 using cpair
= std::pair
<test_type::const_iterator
, test_type::const_iterator
>;
131 static_assert(std::is_same
<decltype(cit
), cpair
>::value
,
132 "const equal_range returns pair<const_iterator, const_iterator>");
140 bool operator()(int l
, int r
) const { return l
== r
; }
142 struct Partition
{ };
144 bool operator()(int l
, Partition
) const { return l
< 6; }
145 bool operator()(Partition
, int r
) const { return 3 < r
; }
147 using is_transparent
= void;
153 operator()(int x
) const
157 operator()(E::Partition
) const
160 using is_transparent
= void;
163 std::unordered_map
<int, int, H
, E
> m
{ {1,0}, {2,0}, {3,0}, {4, 0}, {5, 0} };
165 auto n
= m
.count(E::Partition
{});