blob: a14fb0004922558bad15d189ff0470a459f205ea [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:161// -*- C++ -*-
2//===-------------------------- unordered_set -----------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:014// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:165//
Howard Hinnantb64f8b02010-11-16 22:09:026// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:168//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_UNORDERED_SET
12#define _LIBCPP_UNORDERED_SET
13
14/*
15
16 unordered_set synopsis
17
18#include <initializer_list>
19
20namespace std
21{
22
23template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
24 class Alloc = allocator<Value>>
25class unordered_set
26{
27public:
28 // types
29 typedef Value key_type;
30 typedef key_type value_type;
31 typedef Hash hasher;
32 typedef Pred key_equal;
33 typedef Alloc allocator_type;
34 typedef value_type& reference;
35 typedef const value_type& const_reference;
36 typedef typename allocator_traits<allocator_type>::pointer pointer;
37 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer;
38 typedef typename allocator_traits<allocator_type>::size_type size_type;
39 typedef typename allocator_traits<allocator_type>::difference_type difference_type;
40
41 typedef /unspecified/ iterator;
42 typedef /unspecified/ const_iterator;
43 typedef /unspecified/ local_iterator;
44 typedef /unspecified/ const_local_iterator;
45
Howard Hinnant04dae1d2011-06-04 20:18:3746 unordered_set()
47 noexcept(
48 is_nothrow_default_constructible<hasher>::value &&
49 is_nothrow_default_constructible<key_equal>::value &&
50 is_nothrow_default_constructible<allocator_type>::value);
51 explicit unordered_set(size_type n, const hasher& hf = hasher(),
Howard Hinnantbc8d3f92010-05-11 19:42:1652 const key_equal& eql = key_equal(),
53 const allocator_type& a = allocator_type());
54 template <class InputIterator>
55 unordered_set(InputIterator f, InputIterator l,
56 size_type n = 0, const hasher& hf = hasher(),
57 const key_equal& eql = key_equal(),
58 const allocator_type& a = allocator_type());
59 explicit unordered_set(const allocator_type&);
60 unordered_set(const unordered_set&);
61 unordered_set(const unordered_set&, const Allocator&);
Howard Hinnant04dae1d2011-06-04 20:18:3762 unordered_set(unordered_set&&)
63 noexcept(
64 is_nothrow_move_constructible<hasher>::value &&
65 is_nothrow_move_constructible<key_equal>::value &&
66 is_nothrow_move_constructible<allocator_type>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:1667 unordered_set(unordered_set&&, const Allocator&);
68 unordered_set(initializer_list<value_type>, size_type n = 0,
69 const hasher& hf = hasher(), const key_equal& eql = key_equal(),
70 const allocator_type& a = allocator_type());
Marshall Clowbd444af2013-09-30 21:33:5171 unordered_set(size_type n, const allocator_type& a); // C++14
72 unordered_set(size_type n, const hasher& hf, const allocator_type& a); // C++14
73 template <class InputIterator>
74 unordered_set(InputIterator f, InputIterator l, size_type n, const allocator_type& a); // C++14
75 template <class InputIterator>
76 unordered_set(InputIterator f, InputIterator l, size_type n,
77 const hasher& hf, const allocator_type& a); // C++14
78 unordered_set(initializer_list<value_type> il, size_type n, const allocator_type& a); // C++14
79 unordered_set(initializer_list<value_type> il, size_type n,
80 const hasher& hf, const allocator_type& a); // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:1681 ~unordered_set();
82 unordered_set& operator=(const unordered_set&);
Howard Hinnant04dae1d2011-06-04 20:18:3783 unordered_set& operator=(unordered_set&&)
84 noexcept(
85 allocator_type::propagate_on_container_move_assignment::value &&
86 is_nothrow_move_assignable<allocator_type>::value &&
87 is_nothrow_move_assignable<hasher>::value &&
88 is_nothrow_move_assignable<key_equal>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:1689 unordered_set& operator=(initializer_list<value_type>);
90
Howard Hinnant04dae1d2011-06-04 20:18:3791 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1692
Howard Hinnant04dae1d2011-06-04 20:18:3793 bool empty() const noexcept;
94 size_type size() const noexcept;
95 size_type max_size() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1696
Howard Hinnant04dae1d2011-06-04 20:18:3797 iterator begin() noexcept;
98 iterator end() noexcept;
99 const_iterator begin() const noexcept;
100 const_iterator end() const noexcept;
101 const_iterator cbegin() const noexcept;
102 const_iterator cend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16103
104 template <class... Args>
105 pair<iterator, bool> emplace(Args&&... args);
106 template <class... Args>
107 iterator emplace_hint(const_iterator position, Args&&... args);
108 pair<iterator, bool> insert(const value_type& obj);
109 pair<iterator, bool> insert(value_type&& obj);
110 iterator insert(const_iterator hint, const value_type& obj);
111 iterator insert(const_iterator hint, value_type&& obj);
112 template <class InputIterator>
113 void insert(InputIterator first, InputIterator last);
114 void insert(initializer_list<value_type>);
115
116 iterator erase(const_iterator position);
Marshall Clow488025c2015-05-10 13:35:00117 iterator erase(iterator position); // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16118 size_type erase(const key_type& k);
119 iterator erase(const_iterator first, const_iterator last);
Howard Hinnant04dae1d2011-06-04 20:18:37120 void clear() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16121
Howard Hinnant04dae1d2011-06-04 20:18:37122 void swap(unordered_set&)
Marshall Clow7d914d12015-07-13 20:04:56123 noexcept(allocator_traits<Allocator>::is_always_equal::value &&
124 noexcept(swap(declval<hasher&>(), declval<hasher&>())) &&
125 noexcept(swap(declval<key_equal&>(), declval<key_equal&>()))); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16126
127 hasher hash_function() const;
128 key_equal key_eq() const;
129
130 iterator find(const key_type& k);
131 const_iterator find(const key_type& k) const;
132 size_type count(const key_type& k) const;
133 pair<iterator, iterator> equal_range(const key_type& k);
134 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
135
Howard Hinnant04dae1d2011-06-04 20:18:37136 size_type bucket_count() const noexcept;
137 size_type max_bucket_count() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16138
139 size_type bucket_size(size_type n) const;
140 size_type bucket(const key_type& k) const;
141
142 local_iterator begin(size_type n);
143 local_iterator end(size_type n);
144 const_local_iterator begin(size_type n) const;
145 const_local_iterator end(size_type n) const;
146 const_local_iterator cbegin(size_type n) const;
147 const_local_iterator cend(size_type n) const;
148
Howard Hinnant04dae1d2011-06-04 20:18:37149 float load_factor() const noexcept;
150 float max_load_factor() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16151 void max_load_factor(float z);
152 void rehash(size_type n);
153 void reserve(size_type n);
154};
155
156template <class Value, class Hash, class Pred, class Alloc>
157 void swap(unordered_set<Value, Hash, Pred, Alloc>& x,
Howard Hinnant04dae1d2011-06-04 20:18:37158 unordered_set<Value, Hash, Pred, Alloc>& y)
159 noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16160
161template <class Value, class Hash, class Pred, class Alloc>
162 bool
163 operator==(const unordered_set<Value, Hash, Pred, Alloc>& x,
164 const unordered_set<Value, Hash, Pred, Alloc>& y);
165
166template <class Value, class Hash, class Pred, class Alloc>
167 bool
168 operator!=(const unordered_set<Value, Hash, Pred, Alloc>& x,
169 const unordered_set<Value, Hash, Pred, Alloc>& y);
170
171template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
172 class Alloc = allocator<Value>>
173class unordered_multiset
174{
175public:
176 // types
177 typedef Value key_type;
178 typedef key_type value_type;
179 typedef Hash hasher;
180 typedef Pred key_equal;
181 typedef Alloc allocator_type;
182 typedef value_type& reference;
183 typedef const value_type& const_reference;
184 typedef typename allocator_traits<allocator_type>::pointer pointer;
185 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer;
186 typedef typename allocator_traits<allocator_type>::size_type size_type;
187 typedef typename allocator_traits<allocator_type>::difference_type difference_type;
188
189 typedef /unspecified/ iterator;
190 typedef /unspecified/ const_iterator;
191 typedef /unspecified/ local_iterator;
192 typedef /unspecified/ const_local_iterator;
193
Howard Hinnant04dae1d2011-06-04 20:18:37194 unordered_multiset()
195 noexcept(
196 is_nothrow_default_constructible<hasher>::value &&
197 is_nothrow_default_constructible<key_equal>::value &&
198 is_nothrow_default_constructible<allocator_type>::value);
199 explicit unordered_multiset(size_type n, const hasher& hf = hasher(),
Howard Hinnantbc8d3f92010-05-11 19:42:16200 const key_equal& eql = key_equal(),
201 const allocator_type& a = allocator_type());
202 template <class InputIterator>
203 unordered_multiset(InputIterator f, InputIterator l,
204 size_type n = 0, const hasher& hf = hasher(),
205 const key_equal& eql = key_equal(),
206 const allocator_type& a = allocator_type());
207 explicit unordered_multiset(const allocator_type&);
208 unordered_multiset(const unordered_multiset&);
209 unordered_multiset(const unordered_multiset&, const Allocator&);
Howard Hinnant04dae1d2011-06-04 20:18:37210 unordered_multiset(unordered_multiset&&)
211 noexcept(
212 is_nothrow_move_constructible<hasher>::value &&
213 is_nothrow_move_constructible<key_equal>::value &&
214 is_nothrow_move_constructible<allocator_type>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16215 unordered_multiset(unordered_multiset&&, const Allocator&);
216 unordered_multiset(initializer_list<value_type>, size_type n = /see below/,
217 const hasher& hf = hasher(), const key_equal& eql = key_equal(),
218 const allocator_type& a = allocator_type());
Marshall Clowbd444af2013-09-30 21:33:51219 unordered_multiset(size_type n, const allocator_type& a); // C++14
220 unordered_multiset(size_type n, const hasher& hf, const allocator_type& a); // C++14
221 template <class InputIterator>
222 unordered_multiset(InputIterator f, InputIterator l, size_type n, const allocator_type& a); // C++14
223 template <class InputIterator>
224 unordered_multiset(InputIterator f, InputIterator l, size_type n,
225 const hasher& hf, const allocator_type& a); // C++14
226 unordered_multiset(initializer_list<value_type> il, size_type n, const allocator_type& a); // C++14
227 unordered_multiset(initializer_list<value_type> il, size_type n,
228 const hasher& hf, const allocator_type& a); // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16229 ~unordered_multiset();
230 unordered_multiset& operator=(const unordered_multiset&);
Howard Hinnant04dae1d2011-06-04 20:18:37231 unordered_multiset& operator=(unordered_multiset&&)
232 noexcept(
233 allocator_type::propagate_on_container_move_assignment::value &&
234 is_nothrow_move_assignable<allocator_type>::value &&
235 is_nothrow_move_assignable<hasher>::value &&
236 is_nothrow_move_assignable<key_equal>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16237 unordered_multiset& operator=(initializer_list<value_type>);
238
Howard Hinnant04dae1d2011-06-04 20:18:37239 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16240
Howard Hinnant04dae1d2011-06-04 20:18:37241 bool empty() const noexcept;
242 size_type size() const noexcept;
243 size_type max_size() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16244
Howard Hinnant04dae1d2011-06-04 20:18:37245 iterator begin() noexcept;
246 iterator end() noexcept;
247 const_iterator begin() const noexcept;
248 const_iterator end() const noexcept;
249 const_iterator cbegin() const noexcept;
250 const_iterator cend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16251
252 template <class... Args>
253 iterator emplace(Args&&... args);
254 template <class... Args>
255 iterator emplace_hint(const_iterator position, Args&&... args);
256 iterator insert(const value_type& obj);
257 iterator insert(value_type&& obj);
258 iterator insert(const_iterator hint, const value_type& obj);
259 iterator insert(const_iterator hint, value_type&& obj);
260 template <class InputIterator>
261 void insert(InputIterator first, InputIterator last);
262 void insert(initializer_list<value_type>);
263
264 iterator erase(const_iterator position);
Marshall Clow488025c2015-05-10 13:35:00265 iterator erase(iterator position); // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16266 size_type erase(const key_type& k);
267 iterator erase(const_iterator first, const_iterator last);
Howard Hinnant04dae1d2011-06-04 20:18:37268 void clear() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16269
Howard Hinnant04dae1d2011-06-04 20:18:37270 void swap(unordered_multiset&)
Marshall Clow7d914d12015-07-13 20:04:56271 noexcept(allocator_traits<Allocator>::is_always_equal::value &&
272 noexcept(swap(declval<hasher&>(), declval<hasher&>())) &&
273 noexcept(swap(declval<key_equal&>(), declval<key_equal&>()))); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16274
275 hasher hash_function() const;
276 key_equal key_eq() const;
277
278 iterator find(const key_type& k);
279 const_iterator find(const key_type& k) const;
280 size_type count(const key_type& k) const;
281 pair<iterator, iterator> equal_range(const key_type& k);
282 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
283
Howard Hinnant04dae1d2011-06-04 20:18:37284 size_type bucket_count() const noexcept;
285 size_type max_bucket_count() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16286
287 size_type bucket_size(size_type n) const;
288 size_type bucket(const key_type& k) const;
289
290 local_iterator begin(size_type n);
291 local_iterator end(size_type n);
292 const_local_iterator begin(size_type n) const;
293 const_local_iterator end(size_type n) const;
294 const_local_iterator cbegin(size_type n) const;
295 const_local_iterator cend(size_type n) const;
296
Howard Hinnant04dae1d2011-06-04 20:18:37297 float load_factor() const noexcept;
298 float max_load_factor() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16299 void max_load_factor(float z);
300 void rehash(size_type n);
301 void reserve(size_type n);
302};
303
304template <class Value, class Hash, class Pred, class Alloc>
305 void swap(unordered_multiset<Value, Hash, Pred, Alloc>& x,
Howard Hinnant04dae1d2011-06-04 20:18:37306 unordered_multiset<Value, Hash, Pred, Alloc>& y)
307 noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16308
309template <class Value, class Hash, class Pred, class Alloc>
310 bool
311 operator==(const unordered_multiset<Value, Hash, Pred, Alloc>& x,
312 const unordered_multiset<Value, Hash, Pred, Alloc>& y);
313
314template <class Value, class Hash, class Pred, class Alloc>
315 bool
316 operator!=(const unordered_multiset<Value, Hash, Pred, Alloc>& x,
317 const unordered_multiset<Value, Hash, Pred, Alloc>& y);
318} // std
319
320*/
321
322#include <__config>
323#include <__hash_table>
324#include <functional>
325
Eric Fiselierb9536102014-08-10 23:53:08326#include <__debug>
327
Howard Hinnant08e17472011-10-17 20:05:10328#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16329#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10330#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16331
332_LIBCPP_BEGIN_NAMESPACE_STD
333
334template <class _Value, class _Hash = hash<_Value>, class _Pred = equal_to<_Value>,
335 class _Alloc = allocator<_Value> >
Eric Fiselierc3589a82017-01-04 23:56:00336class _LIBCPP_TEMPLATE_VIS unordered_set
Howard Hinnantbc8d3f92010-05-11 19:42:16337{
338public:
339 // types
340 typedef _Value key_type;
341 typedef key_type value_type;
342 typedef _Hash hasher;
343 typedef _Pred key_equal;
344 typedef _Alloc allocator_type;
345 typedef value_type& reference;
346 typedef const value_type& const_reference;
Howard Hinnant39213642013-07-23 22:01:58347 static_assert((is_same<value_type, typename allocator_type::value_type>::value),
348 "Invalid allocator::value_type");
Howard Hinnantbc8d3f92010-05-11 19:42:16349
350private:
351 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
352
353 __table __table_;
354
355public:
356 typedef typename __table::pointer pointer;
357 typedef typename __table::const_pointer const_pointer;
358 typedef typename __table::size_type size_type;
359 typedef typename __table::difference_type difference_type;
360
361 typedef typename __table::const_iterator iterator;
362 typedef typename __table::const_iterator const_iterator;
363 typedef typename __table::const_local_iterator local_iterator;
364 typedef typename __table::const_local_iterator const_local_iterator;
365
Howard Hinnantee6ccd02010-09-23 18:58:28366 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37367 unordered_set()
368 _NOEXCEPT_(is_nothrow_default_constructible<__table>::value)
Howard Hinnant39213642013-07-23 22:01:58369 {
370#if _LIBCPP_DEBUG_LEVEL >= 2
371 __get_db()->__insert_c(this);
372#endif
373 }
Howard Hinnantbc8d3f92010-05-11 19:42:16374 explicit unordered_set(size_type __n, const hasher& __hf = hasher(),
375 const key_equal& __eql = key_equal());
Marshall Clowbd444af2013-09-30 21:33:51376#if _LIBCPP_STD_VER > 11
377 inline _LIBCPP_INLINE_VISIBILITY
378 unordered_set(size_type __n, const allocator_type& __a)
379 : unordered_set(__n, hasher(), key_equal(), __a) {}
380 inline _LIBCPP_INLINE_VISIBILITY
381 unordered_set(size_type __n, const hasher& __hf, const allocator_type& __a)
382 : unordered_set(__n, __hf, key_equal(), __a) {}
383#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16384 unordered_set(size_type __n, const hasher& __hf, const key_equal& __eql,
385 const allocator_type& __a);
386 template <class _InputIterator>
387 unordered_set(_InputIterator __first, _InputIterator __last);
388 template <class _InputIterator>
389 unordered_set(_InputIterator __first, _InputIterator __last,
390 size_type __n, const hasher& __hf = hasher(),
391 const key_equal& __eql = key_equal());
392 template <class _InputIterator>
393 unordered_set(_InputIterator __first, _InputIterator __last,
394 size_type __n, const hasher& __hf, const key_equal& __eql,
395 const allocator_type& __a);
Marshall Clowbd444af2013-09-30 21:33:51396#if _LIBCPP_STD_VER > 11
397 template <class _InputIterator>
398 inline _LIBCPP_INLINE_VISIBILITY
399 unordered_set(_InputIterator __first, _InputIterator __last,
400 size_type __n, const allocator_type& __a)
401 : unordered_set(__first, __last, __n, hasher(), key_equal(), __a) {}
402 template <class _InputIterator>
403 unordered_set(_InputIterator __first, _InputIterator __last,
404 size_type __n, const hasher& __hf, const allocator_type& __a)
405 : unordered_set(__first, __last, __n, __hf, key_equal(), __a) {}
406#endif
Evgeniy Stepanov9341a8a2016-04-22 01:04:55407 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16408 explicit unordered_set(const allocator_type& __a);
409 unordered_set(const unordered_set& __u);
410 unordered_set(const unordered_set& __u, const allocator_type& __a);
Eric Fiselier6cdc0492017-04-18 22:37:32411#ifndef _LIBCPP_CXX03_LANG
Evgeniy Stepanov9341a8a2016-04-22 01:04:55412 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37413 unordered_set(unordered_set&& __u)
414 _NOEXCEPT_(is_nothrow_move_constructible<__table>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16415 unordered_set(unordered_set&& __u, const allocator_type& __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16416 unordered_set(initializer_list<value_type> __il);
417 unordered_set(initializer_list<value_type> __il, size_type __n,
418 const hasher& __hf = hasher(),
419 const key_equal& __eql = key_equal());
420 unordered_set(initializer_list<value_type> __il, size_type __n,
421 const hasher& __hf, const key_equal& __eql,
422 const allocator_type& __a);
Marshall Clowbd444af2013-09-30 21:33:51423#if _LIBCPP_STD_VER > 11
424 inline _LIBCPP_INLINE_VISIBILITY
425 unordered_set(initializer_list<value_type> __il, size_type __n,
426 const allocator_type& __a)
427 : unordered_set(__il, __n, hasher(), key_equal(), __a) {}
428 inline _LIBCPP_INLINE_VISIBILITY
429 unordered_set(initializer_list<value_type> __il, size_type __n,
430 const hasher& __hf, const allocator_type& __a)
431 : unordered_set(__il, __n, __hf, key_equal(), __a) {}
432#endif
Eric Fiselier6cdc0492017-04-18 22:37:32433#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16434 // ~unordered_set() = default;
Howard Hinnant61aa6012011-07-01 19:24:36435 _LIBCPP_INLINE_VISIBILITY
436 unordered_set& operator=(const unordered_set& __u)
437 {
438 __table_ = __u.__table_;
439 return *this;
440 }
Eric Fiselier6cdc0492017-04-18 22:37:32441#ifndef _LIBCPP_CXX03_LANG
Evgeniy Stepanov9341a8a2016-04-22 01:04:55442 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37443 unordered_set& operator=(unordered_set&& __u)
444 _NOEXCEPT_(is_nothrow_move_assignable<__table>::value);
Evgeniy Stepanov9341a8a2016-04-22 01:04:55445 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16446 unordered_set& operator=(initializer_list<value_type> __il);
Eric Fiselier6cdc0492017-04-18 22:37:32447#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16448
Howard Hinnantee6ccd02010-09-23 18:58:28449 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37450 allocator_type get_allocator() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16451 {return allocator_type(__table_.__node_alloc());}
452
Howard Hinnantee6ccd02010-09-23 18:58:28453 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37454 bool empty() const _NOEXCEPT {return __table_.size() == 0;}
Howard Hinnantee6ccd02010-09-23 18:58:28455 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37456 size_type size() const _NOEXCEPT {return __table_.size();}
Howard Hinnantee6ccd02010-09-23 18:58:28457 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37458 size_type max_size() const _NOEXCEPT {return __table_.max_size();}
Howard Hinnantbc8d3f92010-05-11 19:42:16459
Howard Hinnantee6ccd02010-09-23 18:58:28460 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37461 iterator begin() _NOEXCEPT {return __table_.begin();}
Howard Hinnantee6ccd02010-09-23 18:58:28462 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37463 iterator end() _NOEXCEPT {return __table_.end();}
Howard Hinnantee6ccd02010-09-23 18:58:28464 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37465 const_iterator begin() const _NOEXCEPT {return __table_.begin();}
Howard Hinnantee6ccd02010-09-23 18:58:28466 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37467 const_iterator end() const _NOEXCEPT {return __table_.end();}
Howard Hinnantee6ccd02010-09-23 18:58:28468 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37469 const_iterator cbegin() const _NOEXCEPT {return __table_.begin();}
Howard Hinnantee6ccd02010-09-23 18:58:28470 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37471 const_iterator cend() const _NOEXCEPT {return __table_.end();}
Howard Hinnantbc8d3f92010-05-11 19:42:16472
Eric Fiselier6cdc0492017-04-18 22:37:32473#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16474 template <class... _Args>
Howard Hinnantee6ccd02010-09-23 18:58:28475 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16476 pair<iterator, bool> emplace(_Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19477 {return __table_.__emplace_unique(_VSTD::forward<_Args>(__args)...);}
Howard Hinnantbc8d3f92010-05-11 19:42:16478 template <class... _Args>
Howard Hinnantee6ccd02010-09-23 18:58:28479 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58480#if _LIBCPP_DEBUG_LEVEL >= 2
481 iterator emplace_hint(const_iterator __p, _Args&&... __args)
482 {
483 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
484 "unordered_set::emplace_hint(const_iterator, args...) called with an iterator not"
485 " referring to this unordered_set");
486 return __table_.__emplace_unique(_VSTD::forward<_Args>(__args)...).first;
487 }
488#else
Howard Hinnantbc8d3f92010-05-11 19:42:16489 iterator emplace_hint(const_iterator, _Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19490 {return __table_.__emplace_unique(_VSTD::forward<_Args>(__args)...).first;}
Howard Hinnant39213642013-07-23 22:01:58491#endif
Eric Fiselier6cdc0492017-04-18 22:37:32492
Howard Hinnantee6ccd02010-09-23 18:58:28493 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16494 pair<iterator, bool> insert(value_type&& __x)
Howard Hinnant0949eed2011-06-30 21:18:19495 {return __table_.__insert_unique(_VSTD::move(__x));}
Howard Hinnantee6ccd02010-09-23 18:58:28496 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58497#if _LIBCPP_DEBUG_LEVEL >= 2
498 iterator insert(const_iterator __p, value_type&& __x)
499 {
500 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
501 "unordered_set::insert(const_iterator, value_type&&) called with an iterator not"
502 " referring to this unordered_set");
503 return insert(_VSTD::move(__x)).first;
504 }
505#else
Howard Hinnantbc8d3f92010-05-11 19:42:16506 iterator insert(const_iterator, value_type&& __x)
Howard Hinnant0949eed2011-06-30 21:18:19507 {return insert(_VSTD::move(__x)).first;}
Howard Hinnant39213642013-07-23 22:01:58508#endif
Howard Hinnantee6ccd02010-09-23 18:58:28509 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16510 void insert(initializer_list<value_type> __il)
511 {insert(__il.begin(), __il.end());}
Eric Fiselier6cdc0492017-04-18 22:37:32512#endif // _LIBCPP_CXX03_LANG
513 _LIBCPP_INLINE_VISIBILITY
514 pair<iterator, bool> insert(const value_type& __x)
515 {return __table_.__insert_unique(__x);}
516
517 _LIBCPP_INLINE_VISIBILITY
518#if _LIBCPP_DEBUG_LEVEL >= 2
519 iterator insert(const_iterator __p, const value_type& __x)
520 {
521 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
522 "unordered_set::insert(const_iterator, const value_type&) called with an iterator not"
523 " referring to this unordered_set");
524 return insert(__x).first;
525 }
526#else
527 iterator insert(const_iterator, const value_type& __x)
528 {return insert(__x).first;}
529#endif
530 template <class _InputIterator>
531 _LIBCPP_INLINE_VISIBILITY
532 void insert(_InputIterator __first, _InputIterator __last);
Howard Hinnantbc8d3f92010-05-11 19:42:16533
Howard Hinnantee6ccd02010-09-23 18:58:28534 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16535 iterator erase(const_iterator __p) {return __table_.erase(__p);}
Howard Hinnantee6ccd02010-09-23 18:58:28536 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16537 size_type erase(const key_type& __k) {return __table_.__erase_unique(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:28538 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16539 iterator erase(const_iterator __first, const_iterator __last)
540 {return __table_.erase(__first, __last);}
Howard Hinnantee6ccd02010-09-23 18:58:28541 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37542 void clear() _NOEXCEPT {__table_.clear();}
Howard Hinnantbc8d3f92010-05-11 19:42:16543
Howard Hinnantee6ccd02010-09-23 18:58:28544 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37545 void swap(unordered_set& __u)
546 _NOEXCEPT_(__is_nothrow_swappable<__table>::value)
547 {__table_.swap(__u.__table_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16548
Howard Hinnantee6ccd02010-09-23 18:58:28549 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16550 hasher hash_function() const {return __table_.hash_function();}
Howard Hinnantee6ccd02010-09-23 18:58:28551 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16552 key_equal key_eq() const {return __table_.key_eq();}
553
Howard Hinnantee6ccd02010-09-23 18:58:28554 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16555 iterator find(const key_type& __k) {return __table_.find(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:28556 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16557 const_iterator find(const key_type& __k) const {return __table_.find(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:28558 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16559 size_type count(const key_type& __k) const {return __table_.__count_unique(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:28560 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16561 pair<iterator, iterator> equal_range(const key_type& __k)
562 {return __table_.__equal_range_unique(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:28563 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16564 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const
565 {return __table_.__equal_range_unique(__k);}
566
Howard Hinnantee6ccd02010-09-23 18:58:28567 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37568 size_type bucket_count() const _NOEXCEPT {return __table_.bucket_count();}
Howard Hinnantee6ccd02010-09-23 18:58:28569 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37570 size_type max_bucket_count() const _NOEXCEPT {return __table_.max_bucket_count();}
Howard Hinnantbc8d3f92010-05-11 19:42:16571
Howard Hinnantee6ccd02010-09-23 18:58:28572 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16573 size_type bucket_size(size_type __n) const {return __table_.bucket_size(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28574 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16575 size_type bucket(const key_type& __k) const {return __table_.bucket(__k);}
576
Howard Hinnantee6ccd02010-09-23 18:58:28577 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16578 local_iterator begin(size_type __n) {return __table_.begin(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28579 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16580 local_iterator end(size_type __n) {return __table_.end(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28581 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16582 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28583 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16584 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28585 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16586 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28587 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16588 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
589
Howard Hinnantee6ccd02010-09-23 18:58:28590 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37591 float load_factor() const _NOEXCEPT {return __table_.load_factor();}
Howard Hinnantee6ccd02010-09-23 18:58:28592 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37593 float max_load_factor() const _NOEXCEPT {return __table_.max_load_factor();}
Howard Hinnantee6ccd02010-09-23 18:58:28594 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16595 void max_load_factor(float __mlf) {__table_.max_load_factor(__mlf);}
Howard Hinnantee6ccd02010-09-23 18:58:28596 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16597 void rehash(size_type __n) {__table_.rehash(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:28598 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16599 void reserve(size_type __n) {__table_.reserve(__n);}
Howard Hinnant39213642013-07-23 22:01:58600
601#if _LIBCPP_DEBUG_LEVEL >= 2
602
603 bool __dereferenceable(const const_iterator* __i) const
604 {return __table_.__dereferenceable(__i);}
605 bool __decrementable(const const_iterator* __i) const
606 {return __table_.__decrementable(__i);}
607 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
608 {return __table_.__addable(__i, __n);}
609 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
610 {return __table_.__addable(__i, __n);}
611
612#endif // _LIBCPP_DEBUG_LEVEL >= 2
613
Howard Hinnantbc8d3f92010-05-11 19:42:16614};
615
616template <class _Value, class _Hash, class _Pred, class _Alloc>
617unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n,
618 const hasher& __hf, const key_equal& __eql)
619 : __table_(__hf, __eql)
620{
Howard Hinnant39213642013-07-23 22:01:58621#if _LIBCPP_DEBUG_LEVEL >= 2
622 __get_db()->__insert_c(this);
623#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16624 __table_.rehash(__n);
625}
626
627template <class _Value, class _Hash, class _Pred, class _Alloc>
628unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n,
629 const hasher& __hf, const key_equal& __eql, const allocator_type& __a)
630 : __table_(__hf, __eql, __a)
631{
Howard Hinnant39213642013-07-23 22:01:58632#if _LIBCPP_DEBUG_LEVEL >= 2
633 __get_db()->__insert_c(this);
634#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16635 __table_.rehash(__n);
636}
637
638template <class _Value, class _Hash, class _Pred, class _Alloc>
639template <class _InputIterator>
640unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
641 _InputIterator __first, _InputIterator __last)
642{
Howard Hinnant39213642013-07-23 22:01:58643#if _LIBCPP_DEBUG_LEVEL >= 2
644 __get_db()->__insert_c(this);
645#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16646 insert(__first, __last);
647}
648
649template <class _Value, class _Hash, class _Pred, class _Alloc>
650template <class _InputIterator>
651unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
652 _InputIterator __first, _InputIterator __last, size_type __n,
653 const hasher& __hf, const key_equal& __eql)
654 : __table_(__hf, __eql)
655{
Howard Hinnant39213642013-07-23 22:01:58656#if _LIBCPP_DEBUG_LEVEL >= 2
657 __get_db()->__insert_c(this);
658#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16659 __table_.rehash(__n);
660 insert(__first, __last);
661}
662
663template <class _Value, class _Hash, class _Pred, class _Alloc>
664template <class _InputIterator>
665unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
666 _InputIterator __first, _InputIterator __last, size_type __n,
667 const hasher& __hf, const key_equal& __eql, const allocator_type& __a)
668 : __table_(__hf, __eql, __a)
669{
Howard Hinnant39213642013-07-23 22:01:58670#if _LIBCPP_DEBUG_LEVEL >= 2
671 __get_db()->__insert_c(this);
672#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16673 __table_.rehash(__n);
674 insert(__first, __last);
675}
676
677template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:55678inline
Howard Hinnantbc8d3f92010-05-11 19:42:16679unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
680 const allocator_type& __a)
681 : __table_(__a)
682{
Howard Hinnant39213642013-07-23 22:01:58683#if _LIBCPP_DEBUG_LEVEL >= 2
684 __get_db()->__insert_c(this);
685#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16686}
687
688template <class _Value, class _Hash, class _Pred, class _Alloc>
689unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
690 const unordered_set& __u)
691 : __table_(__u.__table_)
692{
Howard Hinnant39213642013-07-23 22:01:58693#if _LIBCPP_DEBUG_LEVEL >= 2
694 __get_db()->__insert_c(this);
695#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16696 __table_.rehash(__u.bucket_count());
697 insert(__u.begin(), __u.end());
698}
699
700template <class _Value, class _Hash, class _Pred, class _Alloc>
701unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
702 const unordered_set& __u, const allocator_type& __a)
703 : __table_(__u.__table_, __a)
704{
Howard Hinnant39213642013-07-23 22:01:58705#if _LIBCPP_DEBUG_LEVEL >= 2
706 __get_db()->__insert_c(this);
707#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16708 __table_.rehash(__u.bucket_count());
709 insert(__u.begin(), __u.end());
710}
711
Eric Fiselier6cdc0492017-04-18 22:37:32712#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16713
714template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:55715inline
Howard Hinnantbc8d3f92010-05-11 19:42:16716unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
717 unordered_set&& __u)
Howard Hinnant04dae1d2011-06-04 20:18:37718 _NOEXCEPT_(is_nothrow_move_constructible<__table>::value)
Howard Hinnant0949eed2011-06-30 21:18:19719 : __table_(_VSTD::move(__u.__table_))
Howard Hinnantbc8d3f92010-05-11 19:42:16720{
Howard Hinnant39213642013-07-23 22:01:58721#if _LIBCPP_DEBUG_LEVEL >= 2
722 __get_db()->__insert_c(this);
723 __get_db()->swap(this, &__u);
724#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16725}
726
727template <class _Value, class _Hash, class _Pred, class _Alloc>
728unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
729 unordered_set&& __u, const allocator_type& __a)
Howard Hinnant0949eed2011-06-30 21:18:19730 : __table_(_VSTD::move(__u.__table_), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16731{
Howard Hinnant39213642013-07-23 22:01:58732#if _LIBCPP_DEBUG_LEVEL >= 2
733 __get_db()->__insert_c(this);
734#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16735 if (__a != __u.get_allocator())
736 {
737 iterator __i = __u.begin();
738 while (__u.size() != 0)
Howard Hinnant0949eed2011-06-30 21:18:19739 __table_.__insert_unique(_VSTD::move(__u.__table_.remove(__i++)->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:16740 }
Howard Hinnant39213642013-07-23 22:01:58741#if _LIBCPP_DEBUG_LEVEL >= 2
742 else
743 __get_db()->swap(this, &__u);
744#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16745}
746
Howard Hinnantbc8d3f92010-05-11 19:42:16747template <class _Value, class _Hash, class _Pred, class _Alloc>
748unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
749 initializer_list<value_type> __il)
750{
Howard Hinnant39213642013-07-23 22:01:58751#if _LIBCPP_DEBUG_LEVEL >= 2
752 __get_db()->__insert_c(this);
753#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16754 insert(__il.begin(), __il.end());
755}
756
757template <class _Value, class _Hash, class _Pred, class _Alloc>
758unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
759 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
760 const key_equal& __eql)
761 : __table_(__hf, __eql)
762{
Howard Hinnant39213642013-07-23 22:01:58763#if _LIBCPP_DEBUG_LEVEL >= 2
764 __get_db()->__insert_c(this);
765#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16766 __table_.rehash(__n);
767 insert(__il.begin(), __il.end());
768}
769
770template <class _Value, class _Hash, class _Pred, class _Alloc>
771unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(
772 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
773 const key_equal& __eql, const allocator_type& __a)
774 : __table_(__hf, __eql, __a)
775{
Howard Hinnant39213642013-07-23 22:01:58776#if _LIBCPP_DEBUG_LEVEL >= 2
777 __get_db()->__insert_c(this);
778#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16779 __table_.rehash(__n);
780 insert(__il.begin(), __il.end());
781}
782
Howard Hinnantbc8d3f92010-05-11 19:42:16783template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:55784inline
Howard Hinnantbc8d3f92010-05-11 19:42:16785unordered_set<_Value, _Hash, _Pred, _Alloc>&
786unordered_set<_Value, _Hash, _Pred, _Alloc>::operator=(unordered_set&& __u)
Howard Hinnant04dae1d2011-06-04 20:18:37787 _NOEXCEPT_(is_nothrow_move_assignable<__table>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16788{
Howard Hinnant0949eed2011-06-30 21:18:19789 __table_ = _VSTD::move(__u.__table_);
Howard Hinnantbc8d3f92010-05-11 19:42:16790 return *this;
791}
792
Howard Hinnantbc8d3f92010-05-11 19:42:16793template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:55794inline
Howard Hinnantbc8d3f92010-05-11 19:42:16795unordered_set<_Value, _Hash, _Pred, _Alloc>&
796unordered_set<_Value, _Hash, _Pred, _Alloc>::operator=(
797 initializer_list<value_type> __il)
798{
799 __table_.__assign_unique(__il.begin(), __il.end());
800 return *this;
801}
802
Eric Fiselier6cdc0492017-04-18 22:37:32803#endif // _LIBCPP_CXX03_LANG
Howard Hinnante3e32912011-08-12 21:56:02804
Howard Hinnantbc8d3f92010-05-11 19:42:16805template <class _Value, class _Hash, class _Pred, class _Alloc>
806template <class _InputIterator>
Evgeniy Stepanov9341a8a2016-04-22 01:04:55807inline
Howard Hinnantbc8d3f92010-05-11 19:42:16808void
809unordered_set<_Value, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
810 _InputIterator __last)
811{
812 for (; __first != __last; ++__first)
813 __table_.__insert_unique(*__first);
814}
815
816template <class _Value, class _Hash, class _Pred, class _Alloc>
Howard Hinnantee6ccd02010-09-23 18:58:28817inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16818void
819swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
820 unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
Howard Hinnant04dae1d2011-06-04 20:18:37821 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantbc8d3f92010-05-11 19:42:16822{
823 __x.swap(__y);
824}
825
826template <class _Value, class _Hash, class _Pred, class _Alloc>
827bool
828operator==(const unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
829 const unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
830{
831 if (__x.size() != __y.size())
832 return false;
833 typedef typename unordered_set<_Value, _Hash, _Pred, _Alloc>::const_iterator
834 const_iterator;
835 for (const_iterator __i = __x.begin(), __ex = __x.end(), __ey = __y.end();
836 __i != __ex; ++__i)
837 {
838 const_iterator __j = __y.find(*__i);
839 if (__j == __ey || !(*__i == *__j))
840 return false;
841 }
842 return true;
843}
844
845template <class _Value, class _Hash, class _Pred, class _Alloc>
Howard Hinnantee6ccd02010-09-23 18:58:28846inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16847bool
848operator!=(const unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
849 const unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
850{
851 return !(__x == __y);
852}
853
854template <class _Value, class _Hash = hash<_Value>, class _Pred = equal_to<_Value>,
855 class _Alloc = allocator<_Value> >
Eric Fiselierc3589a82017-01-04 23:56:00856class _LIBCPP_TEMPLATE_VIS unordered_multiset
Howard Hinnantbc8d3f92010-05-11 19:42:16857{
858public:
859 // types
860 typedef _Value key_type;
861 typedef key_type value_type;
862 typedef _Hash hasher;
863 typedef _Pred key_equal;
864 typedef _Alloc allocator_type;
865 typedef value_type& reference;
866 typedef const value_type& const_reference;
Howard Hinnant39213642013-07-23 22:01:58867 static_assert((is_same<value_type, typename allocator_type::value_type>::value),
868 "Invalid allocator::value_type");
Howard Hinnantbc8d3f92010-05-11 19:42:16869
870private:
871 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
872
873 __table __table_;
874
875public:
876 typedef typename __table::pointer pointer;
877 typedef typename __table::const_pointer const_pointer;
878 typedef typename __table::size_type size_type;
879 typedef typename __table::difference_type difference_type;
880
881 typedef typename __table::const_iterator iterator;
882 typedef typename __table::const_iterator const_iterator;
883 typedef typename __table::const_local_iterator local_iterator;
884 typedef typename __table::const_local_iterator const_local_iterator;
885
Howard Hinnantee6ccd02010-09-23 18:58:28886 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37887 unordered_multiset()
888 _NOEXCEPT_(is_nothrow_default_constructible<__table>::value)
Howard Hinnant39213642013-07-23 22:01:58889 {
890#if _LIBCPP_DEBUG_LEVEL >= 2
891 __get_db()->__insert_c(this);
892#endif
893 }
Howard Hinnantbc8d3f92010-05-11 19:42:16894 explicit unordered_multiset(size_type __n, const hasher& __hf = hasher(),
895 const key_equal& __eql = key_equal());
896 unordered_multiset(size_type __n, const hasher& __hf,
897 const key_equal& __eql, const allocator_type& __a);
Marshall Clowbd444af2013-09-30 21:33:51898#if _LIBCPP_STD_VER > 11
899 inline _LIBCPP_INLINE_VISIBILITY
900 unordered_multiset(size_type __n, const allocator_type& __a)
901 : unordered_multiset(__n, hasher(), key_equal(), __a) {}
902 inline _LIBCPP_INLINE_VISIBILITY
903 unordered_multiset(size_type __n, const hasher& __hf, const allocator_type& __a)
904 : unordered_multiset(__n, __hf, key_equal(), __a) {}
905#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16906 template <class _InputIterator>
907 unordered_multiset(_InputIterator __first, _InputIterator __last);
908 template <class _InputIterator>
909 unordered_multiset(_InputIterator __first, _InputIterator __last,
910 size_type __n, const hasher& __hf = hasher(),
911 const key_equal& __eql = key_equal());
912 template <class _InputIterator>
913 unordered_multiset(_InputIterator __first, _InputIterator __last,
914 size_type __n , const hasher& __hf,
915 const key_equal& __eql, const allocator_type& __a);
Marshall Clowbd444af2013-09-30 21:33:51916#if _LIBCPP_STD_VER > 11
917 template <class _InputIterator>
918 inline _LIBCPP_INLINE_VISIBILITY
919 unordered_multiset(_InputIterator __first, _InputIterator __last,
920 size_type __n, const allocator_type& __a)
921 : unordered_multiset(__first, __last, __n, hasher(), key_equal(), __a) {}
922 template <class _InputIterator>
923 inline _LIBCPP_INLINE_VISIBILITY
924 unordered_multiset(_InputIterator __first, _InputIterator __last,
925 size_type __n, const hasher& __hf, const allocator_type& __a)
926 : unordered_multiset(__first, __last, __n, __hf, key_equal(), __a) {}
927#endif
Evgeniy Stepanov9341a8a2016-04-22 01:04:55928 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16929 explicit unordered_multiset(const allocator_type& __a);
930 unordered_multiset(const unordered_multiset& __u);
931 unordered_multiset(const unordered_multiset& __u, const allocator_type& __a);
Eric Fiselier6cdc0492017-04-18 22:37:32932#ifndef _LIBCPP_CXX03_LANG
Evgeniy Stepanov9341a8a2016-04-22 01:04:55933 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37934 unordered_multiset(unordered_multiset&& __u)
935 _NOEXCEPT_(is_nothrow_move_constructible<__table>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16936 unordered_multiset(unordered_multiset&& __u, const allocator_type& __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16937 unordered_multiset(initializer_list<value_type> __il);
938 unordered_multiset(initializer_list<value_type> __il, size_type __n,
939 const hasher& __hf = hasher(),
940 const key_equal& __eql = key_equal());
941 unordered_multiset(initializer_list<value_type> __il, size_type __n,
942 const hasher& __hf, const key_equal& __eql,
943 const allocator_type& __a);
Marshall Clowbd444af2013-09-30 21:33:51944#if _LIBCPP_STD_VER > 11
945 inline _LIBCPP_INLINE_VISIBILITY
946 unordered_multiset(initializer_list<value_type> __il, size_type __n, const allocator_type& __a)
947 : unordered_multiset(__il, __n, hasher(), key_equal(), __a) {}
948 inline _LIBCPP_INLINE_VISIBILITY
949 unordered_multiset(initializer_list<value_type> __il, size_type __n, const hasher& __hf, const allocator_type& __a)
950 : unordered_multiset(__il, __n, __hf, key_equal(), __a) {}
951#endif
Eric Fiselier6cdc0492017-04-18 22:37:32952#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16953 // ~unordered_multiset() = default;
Howard Hinnant61aa6012011-07-01 19:24:36954 _LIBCPP_INLINE_VISIBILITY
955 unordered_multiset& operator=(const unordered_multiset& __u)
956 {
957 __table_ = __u.__table_;
958 return *this;
959 }
Eric Fiselier6cdc0492017-04-18 22:37:32960#ifndef _LIBCPP_CXX03_LANG
Evgeniy Stepanov9341a8a2016-04-22 01:04:55961 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37962 unordered_multiset& operator=(unordered_multiset&& __u)
963 _NOEXCEPT_(is_nothrow_move_assignable<__table>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16964 unordered_multiset& operator=(initializer_list<value_type> __il);
Eric Fiselier6cdc0492017-04-18 22:37:32965#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16966
Howard Hinnantee6ccd02010-09-23 18:58:28967 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37968 allocator_type get_allocator() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16969 {return allocator_type(__table_.__node_alloc());}
970
Howard Hinnantee6ccd02010-09-23 18:58:28971 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37972 bool empty() const _NOEXCEPT {return __table_.size() == 0;}
Howard Hinnantee6ccd02010-09-23 18:58:28973 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37974 size_type size() const _NOEXCEPT {return __table_.size();}
Howard Hinnantee6ccd02010-09-23 18:58:28975 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37976 size_type max_size() const _NOEXCEPT {return __table_.max_size();}
Howard Hinnantbc8d3f92010-05-11 19:42:16977
Howard Hinnantee6ccd02010-09-23 18:58:28978 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37979 iterator begin() _NOEXCEPT {return __table_.begin();}
Howard Hinnantee6ccd02010-09-23 18:58:28980 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37981 iterator end() _NOEXCEPT {return __table_.end();}
Howard Hinnantee6ccd02010-09-23 18:58:28982 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37983 const_iterator begin() const _NOEXCEPT {return __table_.begin();}
Howard Hinnantee6ccd02010-09-23 18:58:28984 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37985 const_iterator end() const _NOEXCEPT {return __table_.end();}
Howard Hinnantee6ccd02010-09-23 18:58:28986 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37987 const_iterator cbegin() const _NOEXCEPT {return __table_.begin();}
Howard Hinnantee6ccd02010-09-23 18:58:28988 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:37989 const_iterator cend() const _NOEXCEPT {return __table_.end();}
Howard Hinnantbc8d3f92010-05-11 19:42:16990
Eric Fiselier6cdc0492017-04-18 22:37:32991#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16992 template <class... _Args>
Howard Hinnantee6ccd02010-09-23 18:58:28993 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16994 iterator emplace(_Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19995 {return __table_.__emplace_multi(_VSTD::forward<_Args>(__args)...);}
Howard Hinnantbc8d3f92010-05-11 19:42:16996 template <class... _Args>
Howard Hinnantee6ccd02010-09-23 18:58:28997 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16998 iterator emplace_hint(const_iterator __p, _Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19999 {return __table_.__emplace_hint_multi(__p, _VSTD::forward<_Args>(__args)...);}
Eric Fiselier6cdc0492017-04-18 22:37:321000
Howard Hinnantee6ccd02010-09-23 18:58:281001 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0949eed2011-06-30 21:18:191002 iterator insert(value_type&& __x) {return __table_.__insert_multi(_VSTD::move(__x));}
Howard Hinnantee6ccd02010-09-23 18:58:281003 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161004 iterator insert(const_iterator __p, value_type&& __x)
Howard Hinnant0949eed2011-06-30 21:18:191005 {return __table_.__insert_multi(__p, _VSTD::move(__x));}
Howard Hinnantee6ccd02010-09-23 18:58:281006 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161007 void insert(initializer_list<value_type> __il)
1008 {insert(__il.begin(), __il.end());}
Eric Fiselier6cdc0492017-04-18 22:37:321009#endif // _LIBCPP_CXX03_LANG
1010
1011 _LIBCPP_INLINE_VISIBILITY
1012 iterator insert(const value_type& __x) {return __table_.__insert_multi(__x);}
1013
1014 _LIBCPP_INLINE_VISIBILITY
1015 iterator insert(const_iterator __p, const value_type& __x)
1016 {return __table_.__insert_multi(__p, __x);}
1017
1018 template <class _InputIterator>
1019 _LIBCPP_INLINE_VISIBILITY
1020 void insert(_InputIterator __first, _InputIterator __last);
Howard Hinnantbc8d3f92010-05-11 19:42:161021
Howard Hinnantee6ccd02010-09-23 18:58:281022 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161023 iterator erase(const_iterator __p) {return __table_.erase(__p);}
Howard Hinnantee6ccd02010-09-23 18:58:281024 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161025 size_type erase(const key_type& __k) {return __table_.__erase_multi(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:281026 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161027 iterator erase(const_iterator __first, const_iterator __last)
1028 {return __table_.erase(__first, __last);}
Howard Hinnantee6ccd02010-09-23 18:58:281029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:371030 void clear() _NOEXCEPT {__table_.clear();}
Howard Hinnantbc8d3f92010-05-11 19:42:161031
Howard Hinnantee6ccd02010-09-23 18:58:281032 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:371033 void swap(unordered_multiset& __u)
1034 _NOEXCEPT_(__is_nothrow_swappable<__table>::value)
1035 {__table_.swap(__u.__table_);}
Howard Hinnantbc8d3f92010-05-11 19:42:161036
Howard Hinnantee6ccd02010-09-23 18:58:281037 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161038 hasher hash_function() const {return __table_.hash_function();}
Howard Hinnantee6ccd02010-09-23 18:58:281039 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161040 key_equal key_eq() const {return __table_.key_eq();}
1041
Howard Hinnantee6ccd02010-09-23 18:58:281042 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161043 iterator find(const key_type& __k) {return __table_.find(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:281044 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161045 const_iterator find(const key_type& __k) const {return __table_.find(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:281046 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161047 size_type count(const key_type& __k) const {return __table_.__count_multi(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:281048 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161049 pair<iterator, iterator> equal_range(const key_type& __k)
1050 {return __table_.__equal_range_multi(__k);}
Howard Hinnantee6ccd02010-09-23 18:58:281051 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161052 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const
1053 {return __table_.__equal_range_multi(__k);}
1054
Howard Hinnantee6ccd02010-09-23 18:58:281055 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:371056 size_type bucket_count() const _NOEXCEPT {return __table_.bucket_count();}
Howard Hinnantee6ccd02010-09-23 18:58:281057 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:371058 size_type max_bucket_count() const _NOEXCEPT {return __table_.max_bucket_count();}
Howard Hinnantbc8d3f92010-05-11 19:42:161059
Howard Hinnantee6ccd02010-09-23 18:58:281060 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161061 size_type bucket_size(size_type __n) const {return __table_.bucket_size(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281062 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161063 size_type bucket(const key_type& __k) const {return __table_.bucket(__k);}
1064
Howard Hinnantee6ccd02010-09-23 18:58:281065 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161066 local_iterator begin(size_type __n) {return __table_.begin(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281067 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161068 local_iterator end(size_type __n) {return __table_.end(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281069 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161070 const_local_iterator begin(size_type __n) const {return __table_.cbegin(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281071 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161072 const_local_iterator end(size_type __n) const {return __table_.cend(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281073 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161074 const_local_iterator cbegin(size_type __n) const {return __table_.cbegin(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281075 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161076 const_local_iterator cend(size_type __n) const {return __table_.cend(__n);}
1077
Howard Hinnantee6ccd02010-09-23 18:58:281078 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:371079 float load_factor() const _NOEXCEPT {return __table_.load_factor();}
Howard Hinnantee6ccd02010-09-23 18:58:281080 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant04dae1d2011-06-04 20:18:371081 float max_load_factor() const _NOEXCEPT {return __table_.max_load_factor();}
Howard Hinnantee6ccd02010-09-23 18:58:281082 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161083 void max_load_factor(float __mlf) {__table_.max_load_factor(__mlf);}
Howard Hinnantee6ccd02010-09-23 18:58:281084 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161085 void rehash(size_type __n) {__table_.rehash(__n);}
Howard Hinnantee6ccd02010-09-23 18:58:281086 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161087 void reserve(size_type __n) {__table_.reserve(__n);}
Howard Hinnant39213642013-07-23 22:01:581088
1089#if _LIBCPP_DEBUG_LEVEL >= 2
1090
1091 bool __dereferenceable(const const_iterator* __i) const
1092 {return __table_.__dereferenceable(__i);}
1093 bool __decrementable(const const_iterator* __i) const
1094 {return __table_.__decrementable(__i);}
1095 bool __addable(const const_iterator* __i, ptrdiff_t __n) const
1096 {return __table_.__addable(__i, __n);}
1097 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const
1098 {return __table_.__addable(__i, __n);}
1099
1100#endif // _LIBCPP_DEBUG_LEVEL >= 2
1101
Howard Hinnantbc8d3f92010-05-11 19:42:161102};
1103
1104template <class _Value, class _Hash, class _Pred, class _Alloc>
1105unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1106 size_type __n, const hasher& __hf, const key_equal& __eql)
1107 : __table_(__hf, __eql)
1108{
Howard Hinnant39213642013-07-23 22:01:581109#if _LIBCPP_DEBUG_LEVEL >= 2
1110 __get_db()->__insert_c(this);
1111#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161112 __table_.rehash(__n);
1113}
1114
1115template <class _Value, class _Hash, class _Pred, class _Alloc>
1116unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1117 size_type __n, const hasher& __hf, const key_equal& __eql,
1118 const allocator_type& __a)
1119 : __table_(__hf, __eql, __a)
1120{
Howard Hinnant39213642013-07-23 22:01:581121#if _LIBCPP_DEBUG_LEVEL >= 2
1122 __get_db()->__insert_c(this);
1123#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161124 __table_.rehash(__n);
1125}
1126
1127template <class _Value, class _Hash, class _Pred, class _Alloc>
1128template <class _InputIterator>
1129unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1130 _InputIterator __first, _InputIterator __last)
1131{
Howard Hinnant39213642013-07-23 22:01:581132#if _LIBCPP_DEBUG_LEVEL >= 2
1133 __get_db()->__insert_c(this);
1134#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161135 insert(__first, __last);
1136}
1137
1138template <class _Value, class _Hash, class _Pred, class _Alloc>
1139template <class _InputIterator>
1140unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1141 _InputIterator __first, _InputIterator __last, size_type __n,
1142 const hasher& __hf, const key_equal& __eql)
1143 : __table_(__hf, __eql)
1144{
Howard Hinnant39213642013-07-23 22:01:581145#if _LIBCPP_DEBUG_LEVEL >= 2
1146 __get_db()->__insert_c(this);
1147#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161148 __table_.rehash(__n);
1149 insert(__first, __last);
1150}
1151
1152template <class _Value, class _Hash, class _Pred, class _Alloc>
1153template <class _InputIterator>
1154unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1155 _InputIterator __first, _InputIterator __last, size_type __n,
1156 const hasher& __hf, const key_equal& __eql, const allocator_type& __a)
1157 : __table_(__hf, __eql, __a)
1158{
Howard Hinnant39213642013-07-23 22:01:581159#if _LIBCPP_DEBUG_LEVEL >= 2
1160 __get_db()->__insert_c(this);
1161#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161162 __table_.rehash(__n);
1163 insert(__first, __last);
1164}
1165
1166template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:551167inline
Howard Hinnantbc8d3f92010-05-11 19:42:161168unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1169 const allocator_type& __a)
1170 : __table_(__a)
1171{
Howard Hinnant39213642013-07-23 22:01:581172#if _LIBCPP_DEBUG_LEVEL >= 2
1173 __get_db()->__insert_c(this);
1174#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161175}
1176
1177template <class _Value, class _Hash, class _Pred, class _Alloc>
1178unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1179 const unordered_multiset& __u)
1180 : __table_(__u.__table_)
1181{
Howard Hinnant39213642013-07-23 22:01:581182#if _LIBCPP_DEBUG_LEVEL >= 2
1183 __get_db()->__insert_c(this);
1184#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161185 __table_.rehash(__u.bucket_count());
1186 insert(__u.begin(), __u.end());
1187}
1188
1189template <class _Value, class _Hash, class _Pred, class _Alloc>
1190unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1191 const unordered_multiset& __u, const allocator_type& __a)
1192 : __table_(__u.__table_, __a)
1193{
Howard Hinnant39213642013-07-23 22:01:581194#if _LIBCPP_DEBUG_LEVEL >= 2
1195 __get_db()->__insert_c(this);
1196#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161197 __table_.rehash(__u.bucket_count());
1198 insert(__u.begin(), __u.end());
1199}
1200
Eric Fiselier6cdc0492017-04-18 22:37:321201#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161202
1203template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:551204inline
Howard Hinnantbc8d3f92010-05-11 19:42:161205unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1206 unordered_multiset&& __u)
Howard Hinnant04dae1d2011-06-04 20:18:371207 _NOEXCEPT_(is_nothrow_move_constructible<__table>::value)
Howard Hinnant0949eed2011-06-30 21:18:191208 : __table_(_VSTD::move(__u.__table_))
Howard Hinnantbc8d3f92010-05-11 19:42:161209{
Howard Hinnant39213642013-07-23 22:01:581210#if _LIBCPP_DEBUG_LEVEL >= 2
1211 __get_db()->__insert_c(this);
1212 __get_db()->swap(this, &__u);
1213#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161214}
1215
1216template <class _Value, class _Hash, class _Pred, class _Alloc>
1217unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1218 unordered_multiset&& __u, const allocator_type& __a)
Howard Hinnant0949eed2011-06-30 21:18:191219 : __table_(_VSTD::move(__u.__table_), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:161220{
Howard Hinnant39213642013-07-23 22:01:581221#if _LIBCPP_DEBUG_LEVEL >= 2
1222 __get_db()->__insert_c(this);
1223#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161224 if (__a != __u.get_allocator())
1225 {
1226 iterator __i = __u.begin();
1227 while (__u.size() != 0)
Howard Hinnant0949eed2011-06-30 21:18:191228 __table_.__insert_multi(_VSTD::move(__u.__table_.remove(__i++)->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:161229 }
Howard Hinnant39213642013-07-23 22:01:581230#if _LIBCPP_DEBUG_LEVEL >= 2
1231 else
1232 __get_db()->swap(this, &__u);
1233#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161234}
1235
Howard Hinnantbc8d3f92010-05-11 19:42:161236template <class _Value, class _Hash, class _Pred, class _Alloc>
1237unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1238 initializer_list<value_type> __il)
1239{
Howard Hinnant39213642013-07-23 22:01:581240#if _LIBCPP_DEBUG_LEVEL >= 2
1241 __get_db()->__insert_c(this);
1242#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161243 insert(__il.begin(), __il.end());
1244}
1245
1246template <class _Value, class _Hash, class _Pred, class _Alloc>
1247unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1248 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1249 const key_equal& __eql)
1250 : __table_(__hf, __eql)
1251{
Howard Hinnant39213642013-07-23 22:01:581252#if _LIBCPP_DEBUG_LEVEL >= 2
1253 __get_db()->__insert_c(this);
1254#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161255 __table_.rehash(__n);
1256 insert(__il.begin(), __il.end());
1257}
1258
1259template <class _Value, class _Hash, class _Pred, class _Alloc>
1260unordered_multiset<_Value, _Hash, _Pred, _Alloc>::unordered_multiset(
1261 initializer_list<value_type> __il, size_type __n, const hasher& __hf,
1262 const key_equal& __eql, const allocator_type& __a)
1263 : __table_(__hf, __eql, __a)
1264{
Howard Hinnant39213642013-07-23 22:01:581265#if _LIBCPP_DEBUG_LEVEL >= 2
1266 __get_db()->__insert_c(this);
1267#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161268 __table_.rehash(__n);
1269 insert(__il.begin(), __il.end());
1270}
1271
Howard Hinnantbc8d3f92010-05-11 19:42:161272template <class _Value, class _Hash, class _Pred, class _Alloc>
Evgeniy Stepanov9341a8a2016-04-22 01:04:551273inline
Howard Hinnantbc8d3f92010-05-11 19:42:161274unordered_multiset<_Value, _Hash, _Pred, _Alloc>&
1275unordered_multiset<_Value, _Hash, _Pred, _Alloc>::operator=(
1276 unordered_multiset&& __u)
Howard Hinnant04dae1d2011-06-04 20:18:371277 _NOEXCEPT_(is_nothrow_move_assignable<__table>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:161278{
Howard Hinnant0949eed2011-06-30 21:18:191279 __table_ = _VSTD::move(__u.__table_);
Howard Hinnantbc8d3f92010-05-11 19:42:161280 return *this;
1281}
1282
Howard Hinnantbc8d3f92010-05-11 19:42:161283template <class _Value, class _Hash, class _Pred, class _Alloc>
1284inline
1285unordered_multiset<_Value, _Hash, _Pred, _Alloc>&
1286unordered_multiset<_Value, _Hash, _Pred, _Alloc>::operator=(
1287 initializer_list<value_type> __il)
1288{
1289 __table_.__assign_multi(__il.begin(), __il.end());
1290 return *this;
1291}
1292
Eric Fiselier6cdc0492017-04-18 22:37:321293#endif // _LIBCPP_CXX03_LANG
Howard Hinnante3e32912011-08-12 21:56:021294
Howard Hinnantbc8d3f92010-05-11 19:42:161295template <class _Value, class _Hash, class _Pred, class _Alloc>
1296template <class _InputIterator>
Evgeniy Stepanov9341a8a2016-04-22 01:04:551297inline
Howard Hinnantbc8d3f92010-05-11 19:42:161298void
1299unordered_multiset<_Value, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
1300 _InputIterator __last)
1301{
1302 for (; __first != __last; ++__first)
1303 __table_.__insert_multi(*__first);
1304}
1305
1306template <class _Value, class _Hash, class _Pred, class _Alloc>
Howard Hinnantee6ccd02010-09-23 18:58:281307inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161308void
1309swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
1310 unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
Howard Hinnant04dae1d2011-06-04 20:18:371311 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantbc8d3f92010-05-11 19:42:161312{
1313 __x.swap(__y);
1314}
1315
1316template <class _Value, class _Hash, class _Pred, class _Alloc>
1317bool
1318operator==(const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
1319 const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
1320{
1321 if (__x.size() != __y.size())
1322 return false;
1323 typedef typename unordered_multiset<_Value, _Hash, _Pred, _Alloc>::const_iterator
1324 const_iterator;
1325 typedef pair<const_iterator, const_iterator> _EqRng;
1326 for (const_iterator __i = __x.begin(), __ex = __x.end(); __i != __ex;)
1327 {
1328 _EqRng __xeq = __x.equal_range(*__i);
1329 _EqRng __yeq = __y.equal_range(*__i);
Howard Hinnant0949eed2011-06-30 21:18:191330 if (_VSTD::distance(__xeq.first, __xeq.second) !=
1331 _VSTD::distance(__yeq.first, __yeq.second) ||
1332 !_VSTD::is_permutation(__xeq.first, __xeq.second, __yeq.first))
Howard Hinnantbc8d3f92010-05-11 19:42:161333 return false;
1334 __i = __xeq.second;
1335 }
1336 return true;
1337}
1338
1339template <class _Value, class _Hash, class _Pred, class _Alloc>
Howard Hinnantee6ccd02010-09-23 18:58:281340inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161341bool
1342operator!=(const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
1343 const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
1344{
1345 return !(__x == __y);
1346}
1347
1348_LIBCPP_END_NAMESPACE_STD
1349
1350#endif // _LIBCPP_UNORDERED_SET