blob: 31fcedfb9f9e13cd2d95cae4ba43a8f2a300c6c2 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- hash_map ----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// 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:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_HASH_MAP
12#define _LIBCPP_HASH_MAP
13
14/*
15
16 hash_map synopsis
17
18namespace __gnu_cxx
19{
20
21template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
22 class Alloc = allocator<pair<const Key, T>>>
23class hash_map
24{
25public:
26 // types
27 typedef Key key_type;
28 typedef T mapped_type;
29 typedef Hash hasher;
30 typedef Pred key_equal;
31 typedef Alloc allocator_type;
32 typedef pair<const key_type, mapped_type> value_type;
33 typedef value_type& reference;
34 typedef const value_type& const_reference;
35 typedef typename allocator_traits<allocator_type>::pointer pointer;
36 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer;
37 typedef typename allocator_traits<allocator_type>::size_type size_type;
38 typedef typename allocator_traits<allocator_type>::difference_type difference_type;
39
40 typedef /unspecified/ iterator;
41 typedef /unspecified/ const_iterator;
42
43 explicit hash_map(size_type n = 193, const hasher& hf = hasher(),
44 const key_equal& eql = key_equal(),
45 const allocator_type& a = allocator_type());
46 template <class InputIterator>
47 hash_map(InputIterator f, InputIterator l,
48 size_type n = 193, const hasher& hf = hasher(),
49 const key_equal& eql = key_equal(),
50 const allocator_type& a = allocator_type());
51 hash_map(const hash_map&);
52 ~hash_map();
53 hash_map& operator=(const hash_map&);
54
55 allocator_type get_allocator() const;
56
57 bool empty() const;
58 size_type size() const;
59 size_type max_size() const;
60
61 iterator begin();
62 iterator end();
63 const_iterator begin() const;
64 const_iterator end() const;
65
66 pair<iterator, bool> insert(const value_type& obj);
67 template <class InputIterator>
68 void insert(InputIterator first, InputIterator last);
69
70 void erase(const_iterator position);
71 size_type erase(const key_type& k);
72 void erase(const_iterator first, const_iterator last);
73 void clear();
74
75 void swap(hash_map&);
76
77 hasher hash_funct() const;
78 key_equal key_eq() const;
79
80 iterator find(const key_type& k);
81 const_iterator find(const key_type& k) const;
82 size_type count(const key_type& k) const;
83 pair<iterator, iterator> equal_range(const key_type& k);
84 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
85
86 mapped_type& operator[](const key_type& k);
87
88 size_type bucket_count() const;
89 size_type max_bucket_count() const;
90
91 size_type elems_in_bucket(size_type n) const;
92
93 void resize(size_type n);
94};
95
96template <class Key, class T, class Hash, class Pred, class Alloc>
97 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x,
98 hash_map<Key, T, Hash, Pred, Alloc>& y);
99
100template <class Key, class T, class Hash, class Pred, class Alloc>
101 bool
102 operator==(const hash_map<Key, T, Hash, Pred, Alloc>& x,
103 const hash_map<Key, T, Hash, Pred, Alloc>& y);
104
105template <class Key, class T, class Hash, class Pred, class Alloc>
106 bool
107 operator!=(const hash_map<Key, T, Hash, Pred, Alloc>& x,
108 const hash_map<Key, T, Hash, Pred, Alloc>& y);
109
110template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
111 class Alloc = allocator<pair<const Key, T>>>
112class hash_multimap
113{
114public:
115 // types
116 typedef Key key_type;
117 typedef T mapped_type;
118 typedef Hash hasher;
119 typedef Pred key_equal;
120 typedef Alloc allocator_type;
121 typedef pair<const key_type, mapped_type> value_type;
122 typedef value_type& reference;
123 typedef const value_type& const_reference;
124 typedef typename allocator_traits<allocator_type>::pointer pointer;
125 typedef typename allocator_traits<allocator_type>::const_pointer const_pointer;
126 typedef typename allocator_traits<allocator_type>::size_type size_type;
127 typedef typename allocator_traits<allocator_type>::difference_type difference_type;
128
129 typedef /unspecified/ iterator;
130 typedef /unspecified/ const_iterator;
131
132 explicit hash_multimap(size_type n = 193, const hasher& hf = hasher(),
133 const key_equal& eql = key_equal(),
134 const allocator_type& a = allocator_type());
135 template <class InputIterator>
136 hash_multimap(InputIterator f, InputIterator l,
137 size_type n = 193, const hasher& hf = hasher(),
138 const key_equal& eql = key_equal(),
139 const allocator_type& a = allocator_type());
140 explicit hash_multimap(const allocator_type&);
141 hash_multimap(const hash_multimap&);
142 ~hash_multimap();
143 hash_multimap& operator=(const hash_multimap&);
144
145 allocator_type get_allocator() const;
146
147 bool empty() const;
148 size_type size() const;
149 size_type max_size() const;
150
151 iterator begin();
152 iterator end();
153 const_iterator begin() const;
154 const_iterator end() const;
155
156 iterator insert(const value_type& obj);
157 template <class InputIterator>
158 void insert(InputIterator first, InputIterator last);
159
160 void erase(const_iterator position);
161 size_type erase(const key_type& k);
162 void erase(const_iterator first, const_iterator last);
163 void clear();
164
165 void swap(hash_multimap&);
166
167 hasher hash_funct() const;
168 key_equal key_eq() const;
169
170 iterator find(const key_type& k);
171 const_iterator find(const key_type& k) const;
172 size_type count(const key_type& k) const;
173 pair<iterator, iterator> equal_range(const key_type& k);
174 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
175
176 size_type bucket_count() const;
177 size_type max_bucket_count() const;
178
179 size_type elems_in_bucket(size_type n) const;
180
181 void resize(size_type n);
182};
183
184template <class Key, class T, class Hash, class Pred, class Alloc>
185 void swap(hash_multimap<Key, T, Hash, Pred, Alloc>& x,
186 hash_multimap<Key, T, Hash, Pred, Alloc>& y);
187
188template <class Key, class T, class Hash, class Pred, class Alloc>
189 bool
190 operator==(const hash_multimap<Key, T, Hash, Pred, Alloc>& x,
191 const hash_multimap<Key, T, Hash, Pred, Alloc>& y);
192
193template <class Key, class T, class Hash, class Pred, class Alloc>
194 bool
195 operator!=(const hash_multimap<Key, T, Hash, Pred, Alloc>& x,
196 const hash_multimap<Key, T, Hash, Pred, Alloc>& y);
197
198} // __gnu_cxx
199
200*/
201
202#include <__config>
203#include <__hash_table>
204#include <functional>
205#include <stdexcept>
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000206#include <type_traits>
Sean Huntaffd9e52011-07-29 23:31:56 +0000207#include <ext/__hash>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000208
Howard Hinnant4f598032011-07-24 23:59:50 +0000209#if __DEPRECATED
Howard Hinnantf7555062013-10-04 21:14:44 +0000210#if defined(_MSC_VER) && ! defined(__clang__)
211 _LIBCPP_WARNING("Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>")
212#else
213# warning Use of the header <ext/hash_map> is deprecated. Migrate to <unordered_map>
214#endif
Howard Hinnant4f598032011-07-24 23:59:50 +0000215#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000216
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000217#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000218#pragma GCC system_header
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000219#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000220
221namespace __gnu_cxx {
222
223using namespace std;
224
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000225template <class _Tp, class _Hash,
226 bool = is_empty<_Hash>::value && !__libcpp_is_final<_Hash>::value
Howard Hinnantd4cf2152011-12-11 20:31:33 +0000227 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000228class __hash_map_hasher
229 : private _Hash
230{
231public:
Howard Hinnant422a53f2010-09-21 21:28:23 +0000232 _LIBCPP_INLINE_VISIBILITY __hash_map_hasher() : _Hash() {}
233 _LIBCPP_INLINE_VISIBILITY __hash_map_hasher(const _Hash& __h) : _Hash(__h) {}
234 _LIBCPP_INLINE_VISIBILITY const _Hash& hash_function() const {return *this;}
235 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000236 size_t operator()(const _Tp& __x) const
237 {return static_cast<const _Hash&>(*this)(__x.first);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000238 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000239 size_t operator()(const typename _Tp::first_type& __x) const
240 {return static_cast<const _Hash&>(*this)(__x);}
241};
242
243template <class _Tp, class _Hash>
244class __hash_map_hasher<_Tp, _Hash, false>
245{
246 _Hash __hash_;
247public:
Howard Hinnant422a53f2010-09-21 21:28:23 +0000248 _LIBCPP_INLINE_VISIBILITY __hash_map_hasher() : __hash_() {}
249 _LIBCPP_INLINE_VISIBILITY __hash_map_hasher(const _Hash& __h) : __hash_(__h) {}
250 _LIBCPP_INLINE_VISIBILITY const _Hash& hash_function() const {return __hash_;}
251 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000252 size_t operator()(const _Tp& __x) const
253 {return __hash_(__x.first);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000254 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000255 size_t operator()(const typename _Tp::first_type& __x) const
256 {return __hash_(__x);}
257};
258
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000259template <class _Tp, class _Pred,
260 bool = is_empty<_Pred>::value && !__libcpp_is_final<_Pred>::value
Howard Hinnantd4cf2152011-12-11 20:31:33 +0000261 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000262class __hash_map_equal
263 : private _Pred
264{
265public:
Howard Hinnant422a53f2010-09-21 21:28:23 +0000266 _LIBCPP_INLINE_VISIBILITY __hash_map_equal() : _Pred() {}
267 _LIBCPP_INLINE_VISIBILITY __hash_map_equal(const _Pred& __p) : _Pred(__p) {}
268 _LIBCPP_INLINE_VISIBILITY const _Pred& key_eq() const {return *this;}
269 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000270 bool operator()(const _Tp& __x, const _Tp& __y) const
271 {return static_cast<const _Pred&>(*this)(__x.first, __y.first);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000272 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000273 bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const
274 {return static_cast<const _Pred&>(*this)(__x, __y.first);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000275 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000276 bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const
277 {return static_cast<const _Pred&>(*this)(__x.first, __y);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000278 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +0000279 bool operator()(const typename _Tp::first_type& __x,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000280 const typename _Tp::first_type& __y) const
281 {return static_cast<const _Pred&>(*this)(__x, __y);}
282};
283
284template <class _Tp, class _Pred>
285class __hash_map_equal<_Tp, _Pred, false>
286{
287 _Pred __pred_;
288public:
Howard Hinnant422a53f2010-09-21 21:28:23 +0000289 _LIBCPP_INLINE_VISIBILITY __hash_map_equal() : __pred_() {}
290 _LIBCPP_INLINE_VISIBILITY __hash_map_equal(const _Pred& __p) : __pred_(__p) {}
291 _LIBCPP_INLINE_VISIBILITY const _Pred& key_eq() const {return __pred_;}
292 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000293 bool operator()(const _Tp& __x, const _Tp& __y) const
294 {return __pred_(__x.first, __y.first);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000295 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000296 bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const
297 {return __pred_(__x, __y.first);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000298 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000299 bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const
300 {return __pred_(__x.first, __y);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000301 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000302 bool operator()(const typename _Tp::first_type& __x,
303 const typename _Tp::first_type& __y) const
304 {return __pred_(__x, __y);}
305};
306
307template <class _Alloc>
308class __hash_map_node_destructor
309{
310 typedef _Alloc allocator_type;
311 typedef allocator_traits<allocator_type> __alloc_traits;
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700312 typedef typename __alloc_traits::value_type::value_type value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000313public:
314 typedef typename __alloc_traits::pointer pointer;
315private:
316 typedef typename value_type::first_type first_type;
317 typedef typename value_type::second_type second_type;
318
319 allocator_type& __na_;
320
321 __hash_map_node_destructor& operator=(const __hash_map_node_destructor&);
322
323public:
324 bool __first_constructed;
325 bool __second_constructed;
326
Howard Hinnant422a53f2010-09-21 21:28:23 +0000327 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000328 explicit __hash_map_node_destructor(allocator_type& __na)
329 : __na_(__na),
330 __first_constructed(false),
331 __second_constructed(false)
332 {}
333
Howard Hinnant73d21a42010-09-04 23:28:19 +0000334#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant422a53f2010-09-21 21:28:23 +0000335 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000336 __hash_map_node_destructor(__hash_node_destructor<allocator_type>&& __x)
337 : __na_(__x.__na_),
338 __first_constructed(__x.__value_constructed),
339 __second_constructed(__x.__value_constructed)
340 {
341 __x.__value_constructed = false;
342 }
Howard Hinnant73d21a42010-09-04 23:28:19 +0000343#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant422a53f2010-09-21 21:28:23 +0000344 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000345 __hash_map_node_destructor(const __hash_node_destructor<allocator_type>& __x)
346 : __na_(__x.__na_),
347 __first_constructed(__x.__value_constructed),
348 __second_constructed(__x.__value_constructed)
349 {
350 const_cast<bool&>(__x.__value_constructed) = false;
351 }
Howard Hinnant73d21a42010-09-04 23:28:19 +0000352#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000353
Howard Hinnant422a53f2010-09-21 21:28:23 +0000354 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000355 void operator()(pointer __p)
356 {
357 if (__second_constructed)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000358 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000359 if (__first_constructed)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000360 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.first));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000361 if (__p)
362 __alloc_traits::deallocate(__na_, __p, 1);
363 }
364};
365
366template <class _HashIterator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000367class _LIBCPP_TYPE_VIS_ONLY __hash_map_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000368{
369 _HashIterator __i_;
370
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700371 typedef pointer_traits<typename _HashIterator::pointer> __pointer_traits;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000372 typedef const typename _HashIterator::value_type::first_type key_type;
373 typedef typename _HashIterator::value_type::second_type mapped_type;
374public:
375 typedef forward_iterator_tag iterator_category;
376 typedef pair<key_type, mapped_type> value_type;
377 typedef typename _HashIterator::difference_type difference_type;
378 typedef value_type& reference;
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700379 typedef typename __pointer_traits::template
380#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
381 rebind<value_type>
382#else
383 rebind<value_type>::other
384#endif
385 pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000386
Howard Hinnant422a53f2010-09-21 21:28:23 +0000387 _LIBCPP_INLINE_VISIBILITY __hash_map_iterator() {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000388
Howard Hinnant422a53f2010-09-21 21:28:23 +0000389 _LIBCPP_INLINE_VISIBILITY __hash_map_iterator(_HashIterator __i) : __i_(__i) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000390
Howard Hinnant422a53f2010-09-21 21:28:23 +0000391 _LIBCPP_INLINE_VISIBILITY reference operator*() const {return *operator->();}
392 _LIBCPP_INLINE_VISIBILITY pointer operator->() const {return (pointer)__i_.operator->();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000393
Howard Hinnant422a53f2010-09-21 21:28:23 +0000394 _LIBCPP_INLINE_VISIBILITY __hash_map_iterator& operator++() {++__i_; return *this;}
395 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000396 __hash_map_iterator operator++(int)
397 {
398 __hash_map_iterator __t(*this);
399 ++(*this);
400 return __t;
401 }
402
Howard Hinnant422a53f2010-09-21 21:28:23 +0000403 friend _LIBCPP_INLINE_VISIBILITY
404 bool operator==(const __hash_map_iterator& __x, const __hash_map_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000405 {return __x.__i_ == __y.__i_;}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000406 friend _LIBCPP_INLINE_VISIBILITY
407 bool operator!=(const __hash_map_iterator& __x, const __hash_map_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000408 {return __x.__i_ != __y.__i_;}
409
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000410 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY hash_map;
411 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY hash_multimap;
412 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_const_iterator;
413 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_const_local_iterator;
414 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000415};
416
417template <class _HashIterator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000418class _LIBCPP_TYPE_VIS_ONLY __hash_map_const_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000419{
420 _HashIterator __i_;
421
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700422 typedef pointer_traits<typename _HashIterator::pointer> __pointer_traits;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000423 typedef const typename _HashIterator::value_type::first_type key_type;
424 typedef typename _HashIterator::value_type::second_type mapped_type;
425public:
426 typedef forward_iterator_tag iterator_category;
427 typedef pair<key_type, mapped_type> value_type;
428 typedef typename _HashIterator::difference_type difference_type;
429 typedef const value_type& reference;
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700430 typedef typename __pointer_traits::template
431#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
432 rebind<const value_type>
433#else
434 rebind<const value_type>::other
435#endif
436 pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000437
Howard Hinnant422a53f2010-09-21 21:28:23 +0000438 _LIBCPP_INLINE_VISIBILITY __hash_map_const_iterator() {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000439
Howard Hinnant422a53f2010-09-21 21:28:23 +0000440 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000441 __hash_map_const_iterator(_HashIterator __i) : __i_(__i) {}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000442 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000443 __hash_map_const_iterator(
444 __hash_map_iterator<typename _HashIterator::__non_const_iterator> __i)
445 : __i_(__i.__i_) {}
446
Howard Hinnant422a53f2010-09-21 21:28:23 +0000447 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000448 reference operator*() const {return *operator->();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000449 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000450 pointer operator->() const {return (pointer)__i_.operator->();}
451
Howard Hinnant422a53f2010-09-21 21:28:23 +0000452 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000453 __hash_map_const_iterator& operator++() {++__i_; return *this;}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000454 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000455 __hash_map_const_iterator operator++(int)
456 {
457 __hash_map_const_iterator __t(*this);
458 ++(*this);
459 return __t;
460 }
461
Howard Hinnant422a53f2010-09-21 21:28:23 +0000462 friend _LIBCPP_INLINE_VISIBILITY
463 bool operator==(const __hash_map_const_iterator& __x, const __hash_map_const_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000464 {return __x.__i_ == __y.__i_;}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000465 friend _LIBCPP_INLINE_VISIBILITY
466 bool operator!=(const __hash_map_const_iterator& __x, const __hash_map_const_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000467 {return __x.__i_ != __y.__i_;}
468
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000469 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY hash_map;
470 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY hash_multimap;
471 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_const_iterator;
472 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_const_local_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000473};
474
475template <class _Key, class _Tp, class _Hash = hash<_Key>, class _Pred = equal_to<_Key>,
476 class _Alloc = allocator<pair<const _Key, _Tp> > >
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000477class _LIBCPP_TYPE_VIS_ONLY hash_map
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000478{
479public:
480 // types
481 typedef _Key key_type;
482 typedef _Tp mapped_type;
Sean Hunte36a1962011-07-29 23:31:53 +0000483 typedef _Tp data_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000484 typedef _Hash hasher;
485 typedef _Pred key_equal;
486 typedef _Alloc allocator_type;
487 typedef pair<const key_type, mapped_type> value_type;
488 typedef value_type& reference;
489 typedef const value_type& const_reference;
490
491private:
492 typedef pair<key_type, mapped_type> __value_type;
493 typedef __hash_map_hasher<__value_type, hasher> __hasher;
494 typedef __hash_map_equal<__value_type, key_equal> __key_equal;
Marshall Clow66302c62015-04-07 05:21:38 +0000495 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>, __value_type>::type __allocator_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000496
497 typedef __hash_table<__value_type, __hasher,
498 __key_equal, __allocator_type> __table;
499
500 __table __table_;
501
502 typedef typename __table::__node_pointer __node_pointer;
503 typedef typename __table::__node_const_pointer __node_const_pointer;
504 typedef typename __table::__node_traits __node_traits;
505 typedef typename __table::__node_allocator __node_allocator;
506 typedef typename __table::__node __node;
Howard Hinnant99968442011-11-29 18:15:50 +0000507 typedef __hash_map_node_destructor<__node_allocator> _Dp;
508 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000509 typedef allocator_traits<allocator_type> __alloc_traits;
510public:
511 typedef typename __alloc_traits::pointer pointer;
512 typedef typename __alloc_traits::const_pointer const_pointer;
513 typedef typename __alloc_traits::size_type size_type;
514 typedef typename __alloc_traits::difference_type difference_type;
515
516 typedef __hash_map_iterator<typename __table::iterator> iterator;
517 typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator;
518
Howard Hinnant422a53f2010-09-21 21:28:23 +0000519 _LIBCPP_INLINE_VISIBILITY hash_map() {__table_.rehash(193);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000520 explicit hash_map(size_type __n, const hasher& __hf = hasher(),
521 const key_equal& __eql = key_equal());
522 hash_map(size_type __n, const hasher& __hf,
523 const key_equal& __eql,
524 const allocator_type& __a);
525 template <class _InputIterator>
526 hash_map(_InputIterator __first, _InputIterator __last);
527 template <class _InputIterator>
528 hash_map(_InputIterator __first, _InputIterator __last,
529 size_type __n, const hasher& __hf = hasher(),
530 const key_equal& __eql = key_equal());
531 template <class _InputIterator>
532 hash_map(_InputIterator __first, _InputIterator __last,
533 size_type __n, const hasher& __hf,
534 const key_equal& __eql,
535 const allocator_type& __a);
536 hash_map(const hash_map& __u);
537
Howard Hinnant422a53f2010-09-21 21:28:23 +0000538 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000539 allocator_type get_allocator() const
540 {return allocator_type(__table_.__node_alloc());}
541
Howard Hinnant422a53f2010-09-21 21:28:23 +0000542 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000543 bool empty() const {return __table_.size() == 0;}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000544 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000545 size_type size() const {return __table_.size();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000546 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000547 size_type max_size() const {return __table_.max_size();}
548
Howard Hinnant422a53f2010-09-21 21:28:23 +0000549 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000550 iterator begin() {return __table_.begin();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000551 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000552 iterator end() {return __table_.end();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000553 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000554 const_iterator begin() const {return __table_.begin();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000555 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000556 const_iterator end() const {return __table_.end();}
557
Howard Hinnant422a53f2010-09-21 21:28:23 +0000558 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000559 pair<iterator, bool> insert(const value_type& __x)
560 {return __table_.__insert_unique(__x);}
Sean Hunte36a1962011-07-29 23:31:53 +0000561 _LIBCPP_INLINE_VISIBILITY
562 iterator insert(const_iterator, const value_type& __x) {return insert(__x).first;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000563 template <class _InputIterator>
564 void insert(_InputIterator __first, _InputIterator __last);
565
Howard Hinnant422a53f2010-09-21 21:28:23 +0000566 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000567 void erase(const_iterator __p) {__table_.erase(__p.__i_);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000568 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000569 size_type erase(const key_type& __k) {return __table_.__erase_unique(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000570 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000571 void erase(const_iterator __first, const_iterator __last)
572 {__table_.erase(__first.__i_, __last.__i_);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000573 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000574 void clear() {__table_.clear();}
575
Howard Hinnant422a53f2010-09-21 21:28:23 +0000576 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000577 void swap(hash_map& __u) {__table_.swap(__u.__table_);}
578
Howard Hinnant422a53f2010-09-21 21:28:23 +0000579 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000580 hasher hash_funct() const
581 {return __table_.hash_function().hash_function();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000582 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000583 key_equal key_eq() const
584 {return __table_.key_eq().key_eq();}
585
Howard Hinnant422a53f2010-09-21 21:28:23 +0000586 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000587 iterator find(const key_type& __k) {return __table_.find(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000588 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000589 const_iterator find(const key_type& __k) const {return __table_.find(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000590 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000591 size_type count(const key_type& __k) const {return __table_.__count_unique(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000592 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000593 pair<iterator, iterator> equal_range(const key_type& __k)
594 {return __table_.__equal_range_unique(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000595 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000596 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const
597 {return __table_.__equal_range_unique(__k);}
598
599 mapped_type& operator[](const key_type& __k);
600
Howard Hinnant422a53f2010-09-21 21:28:23 +0000601 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000602 size_type bucket_count() const {return __table_.bucket_count();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000603 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000604 size_type max_bucket_count() const {return __table_.max_bucket_count();}
605
Howard Hinnant422a53f2010-09-21 21:28:23 +0000606 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000607 size_type elems_in_bucket(size_type __n) const
608 {return __table_.bucket_size(__n);}
609
Howard Hinnant422a53f2010-09-21 21:28:23 +0000610 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000611 void resize(size_type __n) {__table_.rehash(__n);}
612
613private:
614 __node_holder __construct_node(const key_type& __k);
615};
616
617template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
618hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
619 size_type __n, const hasher& __hf, const key_equal& __eql)
620 : __table_(__hf, __eql)
621{
622 __table_.rehash(__n);
623}
624
625template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
626hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
627 size_type __n, const hasher& __hf, const key_equal& __eql,
628 const allocator_type& __a)
629 : __table_(__hf, __eql, __a)
630{
631 __table_.rehash(__n);
632}
633
634template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
635template <class _InputIterator>
636hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
637 _InputIterator __first, _InputIterator __last)
638{
639 __table_.rehash(193);
640 insert(__first, __last);
641}
642
643template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
644template <class _InputIterator>
645hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
646 _InputIterator __first, _InputIterator __last, size_type __n,
647 const hasher& __hf, const key_equal& __eql)
648 : __table_(__hf, __eql)
649{
650 __table_.rehash(__n);
651 insert(__first, __last);
652}
653
654template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
655template <class _InputIterator>
656hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
657 _InputIterator __first, _InputIterator __last, size_type __n,
658 const hasher& __hf, const key_equal& __eql, const allocator_type& __a)
659 : __table_(__hf, __eql, __a)
660{
661 __table_.rehash(__n);
662 insert(__first, __last);
663}
664
665template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
666hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_map(
667 const hash_map& __u)
668 : __table_(__u.__table_)
669{
670 __table_.rehash(__u.bucket_count());
671 insert(__u.begin(), __u.end());
672}
673
674template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
675typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__node_holder
676hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::__construct_node(const key_type& __k)
677{
678 __node_allocator& __na = __table_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +0000679 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000680 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.first), __k);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000681 __h.get_deleter().__first_constructed = true;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000682 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000683 __h.get_deleter().__second_constructed = true;
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700684 return _VSTD::move(__h); // explicitly moved for C++03
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000685}
686
687template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
688template <class _InputIterator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700689inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000690void
691hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
692 _InputIterator __last)
693{
694 for (; __first != __last; ++__first)
695 __table_.__insert_unique(*__first);
696}
697
698template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
699_Tp&
700hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::operator[](const key_type& __k)
701{
702 iterator __i = find(__k);
703 if (__i != end())
704 return __i->second;
705 __node_holder __h = __construct_node(__k);
706 pair<iterator, bool> __r = __table_.__node_insert_unique(__h.get());
707 __h.release();
708 return __r.first->second;
709}
710
711template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000712inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000713void
714swap(hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
715 hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
716{
717 __x.swap(__y);
718}
719
720template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
721bool
722operator==(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
723 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
724{
725 if (__x.size() != __y.size())
726 return false;
727 typedef typename hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator
728 const_iterator;
729 for (const_iterator __i = __x.begin(), __ex = __x.end(), __ey = __y.end();
730 __i != __ex; ++__i)
731 {
732 const_iterator __j = __y.find(__i->first);
733 if (__j == __ey || !(*__i == *__j))
734 return false;
735 }
736 return true;
737}
738
739template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000740inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000741bool
742operator!=(const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
743 const hash_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
744{
745 return !(__x == __y);
746}
747
748template <class _Key, class _Tp, class _Hash = hash<_Key>, class _Pred = equal_to<_Key>,
749 class _Alloc = allocator<pair<const _Key, _Tp> > >
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000750class _LIBCPP_TYPE_VIS_ONLY hash_multimap
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000751{
752public:
753 // types
754 typedef _Key key_type;
755 typedef _Tp mapped_type;
Sean Hunte36a1962011-07-29 23:31:53 +0000756 typedef _Tp data_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000757 typedef _Hash hasher;
758 typedef _Pred key_equal;
759 typedef _Alloc allocator_type;
760 typedef pair<const key_type, mapped_type> value_type;
761 typedef value_type& reference;
762 typedef const value_type& const_reference;
763
764private:
765 typedef pair<key_type, mapped_type> __value_type;
766 typedef __hash_map_hasher<__value_type, hasher> __hasher;
767 typedef __hash_map_equal<__value_type, key_equal> __key_equal;
Marshall Clow66302c62015-04-07 05:21:38 +0000768 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>, __value_type>::type __allocator_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000769
770 typedef __hash_table<__value_type, __hasher,
771 __key_equal, __allocator_type> __table;
772
773 __table __table_;
774
775 typedef typename __table::__node_traits __node_traits;
776 typedef typename __table::__node_allocator __node_allocator;
777 typedef typename __table::__node __node;
Howard Hinnant99968442011-11-29 18:15:50 +0000778 typedef __hash_map_node_destructor<__node_allocator> _Dp;
779 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000780 typedef allocator_traits<allocator_type> __alloc_traits;
781public:
782 typedef typename __alloc_traits::pointer pointer;
783 typedef typename __alloc_traits::const_pointer const_pointer;
784 typedef typename __alloc_traits::size_type size_type;
785 typedef typename __alloc_traits::difference_type difference_type;
786
787 typedef __hash_map_iterator<typename __table::iterator> iterator;
788 typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator;
789
Howard Hinnant422a53f2010-09-21 21:28:23 +0000790 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000791 hash_multimap() {__table_.rehash(193);}
792 explicit hash_multimap(size_type __n, const hasher& __hf = hasher(),
793 const key_equal& __eql = key_equal());
794 hash_multimap(size_type __n, const hasher& __hf,
795 const key_equal& __eql,
796 const allocator_type& __a);
797 template <class _InputIterator>
798 hash_multimap(_InputIterator __first, _InputIterator __last);
799 template <class _InputIterator>
800 hash_multimap(_InputIterator __first, _InputIterator __last,
801 size_type __n, const hasher& __hf = hasher(),
802 const key_equal& __eql = key_equal());
803 template <class _InputIterator>
804 hash_multimap(_InputIterator __first, _InputIterator __last,
805 size_type __n, const hasher& __hf,
806 const key_equal& __eql,
807 const allocator_type& __a);
808 hash_multimap(const hash_multimap& __u);
809
Howard Hinnant422a53f2010-09-21 21:28:23 +0000810 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000811 allocator_type get_allocator() const
812 {return allocator_type(__table_.__node_alloc());}
813
Howard Hinnant422a53f2010-09-21 21:28:23 +0000814 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000815 bool empty() const {return __table_.size() == 0;}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000816 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000817 size_type size() const {return __table_.size();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000818 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000819 size_type max_size() const {return __table_.max_size();}
820
Howard Hinnant422a53f2010-09-21 21:28:23 +0000821 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000822 iterator begin() {return __table_.begin();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000823 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000824 iterator end() {return __table_.end();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000825 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000826 const_iterator begin() const {return __table_.begin();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000827 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000828 const_iterator end() const {return __table_.end();}
829
Howard Hinnant422a53f2010-09-21 21:28:23 +0000830 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000831 iterator insert(const value_type& __x) {return __table_.__insert_multi(__x);}
Sean Hunte36a1962011-07-29 23:31:53 +0000832 _LIBCPP_INLINE_VISIBILITY
833 iterator insert(const_iterator, const value_type& __x) {return insert(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000834 template <class _InputIterator>
835 void insert(_InputIterator __first, _InputIterator __last);
836
Howard Hinnant422a53f2010-09-21 21:28:23 +0000837 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000838 void erase(const_iterator __p) {__table_.erase(__p.__i_);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000839 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000840 size_type erase(const key_type& __k) {return __table_.__erase_multi(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000841 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000842 void erase(const_iterator __first, const_iterator __last)
843 {__table_.erase(__first.__i_, __last.__i_);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000844 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000845 void clear() {__table_.clear();}
846
Howard Hinnant422a53f2010-09-21 21:28:23 +0000847 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000848 void swap(hash_multimap& __u) {__table_.swap(__u.__table_);}
849
Howard Hinnant422a53f2010-09-21 21:28:23 +0000850 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000851 hasher hash_funct() const
852 {return __table_.hash_function().hash_function();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000853 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000854 key_equal key_eq() const
855 {return __table_.key_eq().key_eq();}
856
Howard Hinnant422a53f2010-09-21 21:28:23 +0000857 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000858 iterator find(const key_type& __k) {return __table_.find(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000859 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000860 const_iterator find(const key_type& __k) const {return __table_.find(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000861 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000862 size_type count(const key_type& __k) const {return __table_.__count_multi(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000863 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000864 pair<iterator, iterator> equal_range(const key_type& __k)
865 {return __table_.__equal_range_multi(__k);}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000866 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000867 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const
868 {return __table_.__equal_range_multi(__k);}
869
Howard Hinnant422a53f2010-09-21 21:28:23 +0000870 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000871 size_type bucket_count() const {return __table_.bucket_count();}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000872 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000873 size_type max_bucket_count() const {return __table_.max_bucket_count();}
874
Howard Hinnant422a53f2010-09-21 21:28:23 +0000875 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000876 size_type elems_in_bucket(size_type __n) const
877 {return __table_.bucket_size(__n);}
878
Howard Hinnant422a53f2010-09-21 21:28:23 +0000879 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000880 void resize(size_type __n) {__table_.rehash(__n);}
881};
882
883template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
884hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_multimap(
885 size_type __n, const hasher& __hf, const key_equal& __eql)
886 : __table_(__hf, __eql)
887{
888 __table_.rehash(__n);
889}
890
891template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
892hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_multimap(
893 size_type __n, const hasher& __hf, const key_equal& __eql,
894 const allocator_type& __a)
895 : __table_(__hf, __eql, __a)
896{
897 __table_.rehash(__n);
898}
899
900template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
901template <class _InputIterator>
902hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_multimap(
903 _InputIterator __first, _InputIterator __last)
904{
905 __table_.rehash(193);
906 insert(__first, __last);
907}
908
909template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
910template <class _InputIterator>
911hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_multimap(
912 _InputIterator __first, _InputIterator __last, size_type __n,
913 const hasher& __hf, const key_equal& __eql)
914 : __table_(__hf, __eql)
915{
916 __table_.rehash(__n);
917 insert(__first, __last);
918}
919
920template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
921template <class _InputIterator>
922hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_multimap(
923 _InputIterator __first, _InputIterator __last, size_type __n,
924 const hasher& __hf, const key_equal& __eql, const allocator_type& __a)
925 : __table_(__hf, __eql, __a)
926{
927 __table_.rehash(__n);
928 insert(__first, __last);
929}
930
931template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
932hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::hash_multimap(
933 const hash_multimap& __u)
934 : __table_(__u.__table_)
935{
936 __table_.rehash(__u.bucket_count());
937 insert(__u.begin(), __u.end());
938}
939
940template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
941template <class _InputIterator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700942inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000943void
944hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::insert(_InputIterator __first,
945 _InputIterator __last)
946{
947 for (; __first != __last; ++__first)
948 __table_.__insert_multi(*__first);
949}
950
951template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000952inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000953void
954swap(hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
955 hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
956{
957 __x.swap(__y);
958}
959
960template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
961bool
962operator==(const hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
963 const hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
964{
965 if (__x.size() != __y.size())
966 return false;
967 typedef typename hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>::const_iterator
968 const_iterator;
969 typedef pair<const_iterator, const_iterator> _EqRng;
970 for (const_iterator __i = __x.begin(), __ex = __x.end(); __i != __ex;)
971 {
972 _EqRng __xeq = __x.equal_range(__i->first);
973 _EqRng __yeq = __y.equal_range(__i->first);
Howard Hinnant0949eed2011-06-30 21:18:19 +0000974 if (_VSTD::distance(__xeq.first, __xeq.second) !=
975 _VSTD::distance(__yeq.first, __yeq.second) ||
976 !_VSTD::is_permutation(__xeq.first, __xeq.second, __yeq.first))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000977 return false;
978 __i = __xeq.second;
979 }
980 return true;
981}
982
983template <class _Key, class _Tp, class _Hash, class _Pred, class _Alloc>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000984inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000985bool
986operator!=(const hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
987 const hash_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __y)
988{
989 return !(__x == __y);
990}
991
992} // __gnu_cxx
993
994#endif // _LIBCPP_HASH_MAP