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 //===----------------------------------------------------------------------===//
10 // UNSUPPORTED: c++03, c++11, c++14
12 // template<class InputIterator,
13 // class Hash = hash<iter-key-type<InputIterator>>,
14 // class Pred = equal_to<iter-key-type<InputIterator>>,
15 // class Allocator = allocator<iter-to-alloc-type<InputIterator>>>
16 // unordered_map(InputIterator, InputIterator, typename see below::size_type = see below,
17 // Hash = Hash(), Pred = Pred(), Allocator = Allocator())
18 // -> unordered_map<iter-key-type<InputIterator>, iter-mapped-type<InputIterator>, Hash, Pred,
21 // template<class Key, class T, class Hash = hash<Key>,
22 // class Pred = equal_to<Key>, class Allocator = allocator<pair<const Key, T>>>
23 // unordered_map(initializer_list<pair<Key, T>>,
24 // typename see below::size_type = see below, Hash = Hash(),
25 // Pred = Pred(), Allocator = Allocator())
26 // -> unordered_map<Key, T, Hash, Pred, Allocator>;
28 // template<class InputIterator, class Allocator>
29 // unordered_map(InputIterator, InputIterator, typename see below::size_type, Allocator)
30 // -> unordered_map<iter-key-type<InputIterator>, iter-mapped-type<InputIterator>,
31 // hash<iter-key-type<InputIterator>>,
32 // equal_to<iter-key-type<InputIterator>>, Allocator>;
34 // template<class InputIterator, class Allocator>
35 // unordered_map(InputIterator, InputIterator, Allocator)
36 // -> unordered_map<iter-key-type<InputIterator>, iter-mapped-type<InputIterator>,
37 // hash<iter-key-type<InputIterator>>,
38 // equal_to<iter-key-type<InputIterator>>, Allocator>;
40 // template<class InputIterator, class Hash, class Allocator>
41 // unordered_map(InputIterator, InputIterator, typename see below::size_type, Hash, Allocator)
42 // -> unordered_map<iter-key-type<InputIterator>, iter-mapped-type<InputIterator>, Hash,
43 // equal_to<iter-key-type<InputIterator>>, Allocator>;
45 // template<class Key, class T, class Allocator>
46 // unordered_map(initializer_list<pair<Key, T>>, typename see below::size_type, Allocator)
47 // -> unordered_map<Key, T, hash<Key>, equal_to<Key>, Allocator>;
49 // template<class Key, class T, class Allocator>
50 // unordered_map(initializer_list<pair<Key, T>>, Allocator)
51 // -> unordered_map<Key, T, hash<Key>, equal_to<Key>, Allocator>;
53 // template<class Key, class T, class Hash, class Allocator>
54 // unordered_map(initializer_list<pair<Key, T>>, typename see below::size_type, Hash,
56 // -> unordered_map<Key, T, Hash, equal_to<Key>, Allocator>;
58 // template<ranges::input_range R, class Hash = hash<range-key-type<R>>,
59 // class Pred = equal_to<range-key-type<R>>,
60 // class Allocator = allocator<range-to-alloc-type<R>>>
61 // unordered_map(from_range_t, R&&, typename see below::size_type = see below,
62 // Hash = Hash(), Pred = Pred(), Allocator = Allocator())
63 // -> unordered_map<range-key-type<R>, range-mapped-type<R>, Hash, Pred, Allocator>; // C++23
65 // template<ranges::input_range R, class Allocator>
66 // unordered_map(from_range_t, R&&, typename see below::size_type, Allocator)
67 // -> unordered_map<range-key-type<R>, range-mapped-type<R>, hash<range-key-type<R>>,
68 // equal_to<range-key-type<R>>, Allocator>; // C++23
70 // template<ranges::input_range R, class Allocator>
71 // unordered_map(from_range_t, R&&, Allocator)
72 // -> unordered_map<range-key-type<R>, range-mapped-type<R>, hash<range-key-type<R>>,
73 // equal_to<range-key-type<R>>, Allocator>; // C++23
75 // template<ranges::input_range R, class Hash, class Allocator>
76 // unordered_map(from_range_t, R&&, typename see below::size_type, Hash, Allocator)
77 // -> unordered_map<range-key-type<R>, range-mapped-type<R>, Hash,
78 // equal_to<range-key-type<R>>, Allocator>; // C++23
80 #include <algorithm> // is_permutation
83 #include <climits> // INT_MAX
85 #include <type_traits>
86 #include <unordered_map>
88 #include "../../../test_compare.h"
89 #include "../../../test_hash.h"
90 #include "deduction_guides_sfinae_checks.h"
91 #include "test_allocator.h"
93 using P
= std::pair
<int, long>;
94 using PC
= std::pair
<const int, long>;
98 const PC expected_m
[] = { {1,1}, {2,2}, {3,1}, {INT_MAX
,1} };
101 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
102 std::unordered_map
m(std::begin(arr
), std::end(arr
));
103 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long>);
104 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
108 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
109 std::unordered_map
m(std::begin(arr
), std::end(arr
), 42);
110 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long>);
111 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
115 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
116 std::unordered_map
m(std::begin(arr
), std::end(arr
), 42, std::hash
<long long>());
117 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<int>>);
118 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
122 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
123 std::unordered_map
m(std::begin(arr
), std::end(arr
), 42, std::hash
<long long>(), std::equal_to
<>());
124 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<>>);
125 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
129 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
130 std::unordered_map
m(std::begin(arr
), std::end(arr
), 42, std::hash
<long long>(), std::equal_to
<>(), test_allocator
<PC
>(0, 41));
131 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<>, test_allocator
<PC
>>);
132 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
133 assert(m
.get_allocator().get_id() == 41);
137 std::unordered_map
<int, long> source
;
138 std::unordered_map
m(source
);
139 ASSERT_SAME_TYPE(decltype(m
), decltype(source
));
140 assert(m
.size() == 0);
144 std::unordered_map
<int, long> source
;
145 std::unordered_map m
{source
}; // braces instead of parens
146 ASSERT_SAME_TYPE(decltype(m
), decltype(source
));
147 assert(m
.size() == 0);
151 std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<>, test_allocator
<PC
>> source
;
152 test_allocator
<PC
> a(0, 42);
153 std::unordered_map
m(source
, a
);
154 ASSERT_SAME_TYPE(decltype(m
), decltype(source
));
155 assert(m
.get_allocator().get_id() == 42);
156 assert(m
.size() == 0);
160 std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<>, test_allocator
<PC
>> source
;
161 test_allocator
<PC
> a(0, 43);
162 std::unordered_map m
{source
, a
}; // braces instead of parens
163 ASSERT_SAME_TYPE(decltype(m
), decltype(source
));
164 assert(m
.get_allocator().get_id() == 43);
165 assert(m
.size() == 0);
169 std::unordered_map m
{ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} };
170 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long>);
171 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
175 std::unordered_map
m({ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} }, 42);
176 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long>);
177 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
181 std::unordered_map
m({ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} }, 42, std::hash
<long long>());
182 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>>);
183 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
187 std::unordered_map
m({ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} }, 42, std::hash
<long long>(), std::equal_to
<>());
188 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<>>);
189 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
193 std::unordered_map
m({ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} }, 42, std::hash
<long long>(), std::equal_to
<>(), test_allocator
<PC
>(0, 44));
194 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<>, test_allocator
<PC
>>);
195 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
196 assert(m
.get_allocator().get_id() == 44);
200 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
201 std::unordered_map
m(std::begin(arr
), std::end(arr
), 42, test_allocator
<PC
>(0, 45));
202 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<int>, std::equal_to
<int>, test_allocator
<PC
>>);
203 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
204 assert(m
.get_allocator().get_id() == 45);
208 const P arr
[] = { {1,1}, {2,2}, {1,1}, {INT_MAX
,1}, {3,1} };
209 std::unordered_map
m(std::begin(arr
), std::end(arr
), 42, std::hash
<long long>(), test_allocator
<PC
>(0, 46));
210 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<int>, test_allocator
<PC
>>);
211 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
212 assert(m
.get_allocator().get_id() == 46);
216 std::unordered_map
m({ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} }, 42, test_allocator
<PC
>(0, 47));
217 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<int>, std::equal_to
<int>, test_allocator
<PC
>>);
218 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
219 assert(m
.get_allocator().get_id() == 47);
223 std::unordered_map
m({ P
{1,1L}, P
{2,2L}, P
{1,1L}, P
{INT_MAX
,1L}, P
{3,1L} }, 42, std::hash
<long long>(), test_allocator
<PC
>(0, 48));
224 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, long, std::hash
<long long>, std::equal_to
<int>, test_allocator
<PC
>>);
225 assert(std::is_permutation(m
.begin(), m
.end(), std::begin(expected_m
), std::end(expected_m
)));
226 assert(m
.get_allocator().get_id() == 48);
230 // Examples from LWG3025
231 std::unordered_map m
{std::pair
{1, 1}, {2, 2}, {3, 3}};
232 ASSERT_SAME_TYPE(decltype(m
), std::unordered_map
<int, int>);
234 std::unordered_map m2
{m
.begin(), m
.end()};
235 ASSERT_SAME_TYPE(decltype(m2
), std::unordered_map
<int, int>);
239 // Examples from LWG3531
240 std::unordered_map m1
{{std::pair
{1, 2}, {3, 4}}, 0};
241 ASSERT_SAME_TYPE(decltype(m1
), std::unordered_map
<int, int>);
243 using value_type
= std::pair
<const int, int>;
244 std::unordered_map m2
{{value_type
{1, 2}, {3, 4}}, 0};
245 ASSERT_SAME_TYPE(decltype(m2
), std::unordered_map
<int, int>);
248 #if TEST_STD_VER >= 23
250 using Range
= std::array
<P
, 0>;
251 using Pred
= test_equal_to
<int>;
252 using DefaultPred
= std::equal_to
<int>;
253 using Hash
= test_hash
<int>;
254 using DefaultHash
= std::hash
<int>;
255 using Alloc
= test_allocator
<PC
>;
257 { // (from_range, range)
258 std::unordered_map
c(std::from_range
, Range());
259 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long>>);
262 { // (from_range, range, n)
263 std::unordered_map
c(std::from_range
, Range(), std::size_t());
264 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long>>);
267 { // (from_range, range, n, hash)
268 std::unordered_map
c(std::from_range
, Range(), std::size_t(), Hash());
269 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long, Hash
>>);
272 { // (from_range, range, n, hash, pred)
273 std::unordered_map
c(std::from_range
, Range(), std::size_t(), Hash(), Pred());
274 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long, Hash
, Pred
>>);
277 { // (from_range, range, n, hash, pred, alloc)
278 std::unordered_map
c(std::from_range
, Range(), std::size_t(), Hash(), Pred(), Alloc());
279 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long, Hash
, Pred
, Alloc
>>);
282 { // (from_range, range, n, alloc)
283 std::unordered_map
c(std::from_range
, Range(), std::size_t(), Alloc());
284 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long, DefaultHash
, DefaultPred
, Alloc
>>);
287 // TODO(LWG 2713): uncomment this test once the constructor is added.
288 { // (from_range, range, alloc)
289 //std::unordered_map c(std::from_range, Range(), Alloc());
290 //static_assert(std::is_same_v<decltype(c), std::unordered_map<int, long, DefaultHash, DefaultPred, Alloc>>);
293 { // (from_range, range, n, hash, alloc)
294 std::unordered_map
c(std::from_range
, Range(), std::size_t(), Hash(), Alloc());
295 static_assert(std::is_same_v
<decltype(c
), std::unordered_map
<int, long, Hash
, DefaultPred
, Alloc
>>);
300 UnorderedContainerDeductionGuidesSfinaeAway
<std::unordered_map
, std::unordered_map
<int, long>>();