blob: c946ca0e5c7fb73d44c1a0ebcc8873dab26aa0d7 [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------- map ------------------------------------===//
3//
Howard Hinnantc566dc32010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantc51e1022010-05-11 19:42:16 +00005//
Howard Hinnantee11c312010-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 Hinnantc51e1022010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_MAP
12#define _LIBCPP_MAP
13
14/*
15
16 map synopsis
17
18namespace std
19{
20
21template <class Key, class T, class Compare = less<Key>,
22 class Allocator = allocator<pair<const Key, T>>>
23class map
24{
25public:
26 // types:
27 typedef Key key_type;
28 typedef T mapped_type;
29 typedef pair<const key_type, mapped_type> value_type;
30 typedef Compare key_compare;
31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::pointer pointer;
35 typedef typename allocator_type::const_pointer const_pointer;
36 typedef typename allocator_type::size_type size_type;
37 typedef typename allocator_type::difference_type difference_type;
38
39 typedef implementation-defined iterator;
40 typedef implementation-defined const_iterator;
41 typedef std::reverse_iterator<iterator> reverse_iterator;
42 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
43
44 class value_compare
45 : public binary_function<value_type, value_type, bool>
46 {
47 friend class map;
48 protected:
49 key_compare comp;
50
51 value_compare(key_compare c);
52 public:
53 bool operator()(const value_type& x, const value_type& y) const;
54 };
55
56 // construct/copy/destroy:
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +000057 map()
58 noexcept(
59 is_nothrow_default_constructible<allocator_type>::value &&
60 is_nothrow_default_constructible<key_compare>::value &&
61 is_nothrow_copy_constructible<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +000062 explicit map(const key_compare& comp);
63 map(const key_compare& comp, const allocator_type& a);
64 template <class InputIterator>
65 map(InputIterator first, InputIterator last,
66 const key_compare& comp = key_compare());
67 template <class InputIterator>
68 map(InputIterator first, InputIterator last,
69 const key_compare& comp, const allocator_type& a);
70 map(const map& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +000071 map(map&& m)
72 noexcept(
73 is_nothrow_move_constructible<allocator_type>::value &&
74 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +000075 explicit map(const allocator_type& a);
76 map(const map& m, const allocator_type& a);
77 map(map&& m, const allocator_type& a);
78 map(initializer_list<value_type> il, const key_compare& comp = key_compare());
79 map(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
Marshall Clow300abfb2013-09-11 01:15:47 +000080 template <class InputIterator>
81 map(InputIterator first, InputIterator last, const allocator_type& a)
82 : map(first, last, Compare(), a) {} // C++14
83 map(initializer_list<value_type> il, const allocator_type& a)
84 : map(il, Compare(), a) {} // C++14
85 ~map();
Howard Hinnantc51e1022010-05-11 19:42:16 +000086
87 map& operator=(const map& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +000088 map& operator=(map&& m)
89 noexcept(
90 allocator_type::propagate_on_container_move_assignment::value &&
91 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantf95f4f52011-06-04 15:22:34 +000092 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +000093 map& operator=(initializer_list<value_type> il);
94
95 // iterators:
Howard Hinnantf95f4f52011-06-04 15:22:34 +000096 iterator begin() noexcept;
97 const_iterator begin() const noexcept;
98 iterator end() noexcept;
99 const_iterator end() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000100
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000101 reverse_iterator rbegin() noexcept;
102 const_reverse_iterator rbegin() const noexcept;
103 reverse_iterator rend() noexcept;
104 const_reverse_iterator rend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000105
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000106 const_iterator cbegin() const noexcept;
107 const_iterator cend() const noexcept;
108 const_reverse_iterator crbegin() const noexcept;
109 const_reverse_iterator crend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000110
111 // capacity:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000112 bool empty() const noexcept;
113 size_type size() const noexcept;
114 size_type max_size() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000115
116 // element access:
117 mapped_type& operator[](const key_type& k);
118 mapped_type& operator[](key_type&& k);
119
120 mapped_type& at(const key_type& k);
121 const mapped_type& at(const key_type& k) const;
122
123 // modifiers:
124 template <class... Args>
125 pair<iterator, bool> emplace(Args&&... args);
126 template <class... Args>
127 iterator emplace_hint(const_iterator position, Args&&... args);
128 pair<iterator, bool> insert(const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000129 pair<iterator, bool> insert( value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000130 template <class P>
131 pair<iterator, bool> insert(P&& p);
132 iterator insert(const_iterator position, const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000133 iterator insert(const_iterator position, value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000134 template <class P>
135 iterator insert(const_iterator position, P&& p);
136 template <class InputIterator>
137 void insert(InputIterator first, InputIterator last);
138 void insert(initializer_list<value_type> il);
139
Marshall Clow3223db82015-07-07 03:37:33 +0000140 template <class... Args>
141 pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17
142 template <class... Args>
143 pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17
144 template <class... Args>
145 iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17
146 template <class... Args>
147 iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17
148 template <class M>
149 pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17
150 template <class M>
151 pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17
152 template <class M>
153 iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17
154 template <class M>
155 iterator insert_or_assign(const_iterator hint, key_type&& k, M&& obj); // C++17
156
Howard Hinnantc51e1022010-05-11 19:42:16 +0000157 iterator erase(const_iterator position);
Marshall Clow22ea5b82015-05-10 13:35:00 +0000158 iterator erase(iterator position); // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000159 size_type erase(const key_type& k);
160 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000161 void clear() noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000162
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000163 void swap(map& m)
Marshall Clow8982dcd2015-07-13 20:04:56 +0000164 noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
165 __is_nothrow_swappable<key_compare>::value); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000166
167 // observers:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000168 allocator_type get_allocator() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000169 key_compare key_comp() const;
170 value_compare value_comp() const;
171
172 // map operations:
173 iterator find(const key_type& k);
174 const_iterator find(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000175 template<typename K>
176 iterator find(const K& x); // C++14
177 template<typename K>
178 const_iterator find(const K& x) const; // C++14
179 template<typename K>
Marshall Clowe6a5f522014-08-24 23:54:16 +0000180 size_type count(const K& x) const; // C++14
Marshall Clowebb57322013-08-13 22:18:47 +0000181
Howard Hinnantc51e1022010-05-11 19:42:16 +0000182 size_type count(const key_type& k) const;
183 iterator lower_bound(const key_type& k);
184 const_iterator lower_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000185 template<typename K>
186 iterator lower_bound(const K& x); // C++14
187 template<typename K>
188 const_iterator lower_bound(const K& x) const; // C++14
189
Howard Hinnantc51e1022010-05-11 19:42:16 +0000190 iterator upper_bound(const key_type& k);
191 const_iterator upper_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000192 template<typename K>
193 iterator upper_bound(const K& x); // C++14
194 template<typename K>
195 const_iterator upper_bound(const K& x) const; // C++14
196
Howard Hinnantc51e1022010-05-11 19:42:16 +0000197 pair<iterator,iterator> equal_range(const key_type& k);
198 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000199 template<typename K>
200 pair<iterator,iterator> equal_range(const K& x); // C++14
201 template<typename K>
202 pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000203};
204
205template <class Key, class T, class Compare, class Allocator>
206bool
207operator==(const map<Key, T, Compare, Allocator>& x,
208 const map<Key, T, Compare, Allocator>& y);
209
210template <class Key, class T, class Compare, class Allocator>
211bool
212operator< (const map<Key, T, Compare, Allocator>& x,
213 const map<Key, T, Compare, Allocator>& y);
214
215template <class Key, class T, class Compare, class Allocator>
216bool
217operator!=(const map<Key, T, Compare, Allocator>& x,
218 const map<Key, T, Compare, Allocator>& y);
219
220template <class Key, class T, class Compare, class Allocator>
221bool
222operator> (const map<Key, T, Compare, Allocator>& x,
223 const map<Key, T, Compare, Allocator>& y);
224
225template <class Key, class T, class Compare, class Allocator>
226bool
227operator>=(const map<Key, T, Compare, Allocator>& x,
228 const map<Key, T, Compare, Allocator>& y);
229
230template <class Key, class T, class Compare, class Allocator>
231bool
232operator<=(const map<Key, T, Compare, Allocator>& x,
233 const map<Key, T, Compare, Allocator>& y);
234
235// specialized algorithms:
236template <class Key, class T, class Compare, class Allocator>
237void
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000238swap(map<Key, T, Compare, Allocator>& x, map<Key, T, Compare, Allocator>& y)
239 noexcept(noexcept(x.swap(y)));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000240
241template <class Key, class T, class Compare = less<Key>,
242 class Allocator = allocator<pair<const Key, T>>>
243class multimap
244{
245public:
246 // types:
247 typedef Key key_type;
248 typedef T mapped_type;
249 typedef pair<const key_type,mapped_type> value_type;
250 typedef Compare key_compare;
251 typedef Allocator allocator_type;
252 typedef typename allocator_type::reference reference;
253 typedef typename allocator_type::const_reference const_reference;
254 typedef typename allocator_type::size_type size_type;
255 typedef typename allocator_type::difference_type difference_type;
256 typedef typename allocator_type::pointer pointer;
257 typedef typename allocator_type::const_pointer const_pointer;
258
259 typedef implementation-defined iterator;
260 typedef implementation-defined const_iterator;
261 typedef std::reverse_iterator<iterator> reverse_iterator;
262 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
263
264 class value_compare
265 : public binary_function<value_type,value_type,bool>
266 {
267 friend class multimap;
268 protected:
269 key_compare comp;
270 value_compare(key_compare c);
271 public:
272 bool operator()(const value_type& x, const value_type& y) const;
273 };
274
275 // construct/copy/destroy:
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000276 multimap()
277 noexcept(
278 is_nothrow_default_constructible<allocator_type>::value &&
279 is_nothrow_default_constructible<key_compare>::value &&
280 is_nothrow_copy_constructible<key_compare>::value);
281 explicit multimap(const key_compare& comp);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000282 multimap(const key_compare& comp, const allocator_type& a);
283 template <class InputIterator>
284 multimap(InputIterator first, InputIterator last, const key_compare& comp);
285 template <class InputIterator>
286 multimap(InputIterator first, InputIterator last, const key_compare& comp,
287 const allocator_type& a);
288 multimap(const multimap& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000289 multimap(multimap&& m)
290 noexcept(
291 is_nothrow_move_constructible<allocator_type>::value &&
292 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000293 explicit multimap(const allocator_type& a);
294 multimap(const multimap& m, const allocator_type& a);
295 multimap(multimap&& m, const allocator_type& a);
296 multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
297 multimap(initializer_list<value_type> il, const key_compare& comp,
298 const allocator_type& a);
Marshall Clow300abfb2013-09-11 01:15:47 +0000299 template <class InputIterator>
300 multimap(InputIterator first, InputIterator last, const allocator_type& a)
301 : multimap(first, last, Compare(), a) {} // C++14
302 multimap(initializer_list<value_type> il, const allocator_type& a)
303 : multimap(il, Compare(), a) {} // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000304 ~multimap();
305
306 multimap& operator=(const multimap& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000307 multimap& operator=(multimap&& m)
308 noexcept(
309 allocator_type::propagate_on_container_move_assignment::value &&
310 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000311 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000312 multimap& operator=(initializer_list<value_type> il);
313
314 // iterators:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000315 iterator begin() noexcept;
316 const_iterator begin() const noexcept;
317 iterator end() noexcept;
318 const_iterator end() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000319
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000320 reverse_iterator rbegin() noexcept;
321 const_reverse_iterator rbegin() const noexcept;
322 reverse_iterator rend() noexcept;
323 const_reverse_iterator rend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000324
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000325 const_iterator cbegin() const noexcept;
326 const_iterator cend() const noexcept;
327 const_reverse_iterator crbegin() const noexcept;
328 const_reverse_iterator crend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000329
330 // capacity:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000331 bool empty() const noexcept;
332 size_type size() const noexcept;
333 size_type max_size() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000334
335 // modifiers:
336 template <class... Args>
337 iterator emplace(Args&&... args);
338 template <class... Args>
339 iterator emplace_hint(const_iterator position, Args&&... args);
340 iterator insert(const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000341 iterator insert( value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000342 template <class P>
343 iterator insert(P&& p);
344 iterator insert(const_iterator position, const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000345 iterator insert(const_iterator position, value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000346 template <class P>
347 iterator insert(const_iterator position, P&& p);
348 template <class InputIterator>
349 void insert(InputIterator first, InputIterator last);
350 void insert(initializer_list<value_type> il);
351
352 iterator erase(const_iterator position);
Marshall Clow22ea5b82015-05-10 13:35:00 +0000353 iterator erase(iterator position); // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000354 size_type erase(const key_type& k);
355 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000356 void clear() noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000357
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000358 void swap(multimap& m)
Marshall Clow8982dcd2015-07-13 20:04:56 +0000359 noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
360 __is_nothrow_swappable<key_compare>::value); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000361
362 // observers:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000363 allocator_type get_allocator() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000364 key_compare key_comp() const;
365 value_compare value_comp() const;
366
367 // map operations:
368 iterator find(const key_type& k);
369 const_iterator find(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000370 template<typename K>
371 iterator find(const K& x); // C++14
372 template<typename K>
373 const_iterator find(const K& x) const; // C++14
374 template<typename K>
Marshall Clowe6a5f522014-08-24 23:54:16 +0000375 size_type count(const K& x) const; // C++14
Marshall Clowebb57322013-08-13 22:18:47 +0000376
Howard Hinnantc51e1022010-05-11 19:42:16 +0000377 size_type count(const key_type& k) const;
378 iterator lower_bound(const key_type& k);
379 const_iterator lower_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000380 template<typename K>
381 iterator lower_bound(const K& x); // C++14
382 template<typename K>
383 const_iterator lower_bound(const K& x) const; // C++14
384
Howard Hinnantc51e1022010-05-11 19:42:16 +0000385 iterator upper_bound(const key_type& k);
386 const_iterator upper_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000387 template<typename K>
388 iterator upper_bound(const K& x); // C++14
389 template<typename K>
390 const_iterator upper_bound(const K& x) const; // C++14
391
Howard Hinnantc51e1022010-05-11 19:42:16 +0000392 pair<iterator,iterator> equal_range(const key_type& k);
393 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000394 template<typename K>
395 pair<iterator,iterator> equal_range(const K& x); // C++14
396 template<typename K>
397 pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000398};
399
400template <class Key, class T, class Compare, class Allocator>
401bool
402operator==(const multimap<Key, T, Compare, Allocator>& x,
403 const multimap<Key, T, Compare, Allocator>& y);
404
405template <class Key, class T, class Compare, class Allocator>
406bool
407operator< (const multimap<Key, T, Compare, Allocator>& x,
408 const multimap<Key, T, Compare, Allocator>& y);
409
410template <class Key, class T, class Compare, class Allocator>
411bool
412operator!=(const multimap<Key, T, Compare, Allocator>& x,
413 const multimap<Key, T, Compare, Allocator>& y);
414
415template <class Key, class T, class Compare, class Allocator>
416bool
417operator> (const multimap<Key, T, Compare, Allocator>& x,
418 const multimap<Key, T, Compare, Allocator>& y);
419
420template <class Key, class T, class Compare, class Allocator>
421bool
422operator>=(const multimap<Key, T, Compare, Allocator>& x,
423 const multimap<Key, T, Compare, Allocator>& y);
424
425template <class Key, class T, class Compare, class Allocator>
426bool
427operator<=(const multimap<Key, T, Compare, Allocator>& x,
428 const multimap<Key, T, Compare, Allocator>& y);
429
430// specialized algorithms:
431template <class Key, class T, class Compare, class Allocator>
432void
433swap(multimap<Key, T, Compare, Allocator>& x,
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000434 multimap<Key, T, Compare, Allocator>& y)
435 noexcept(noexcept(x.swap(y)));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000436
437} // std
438
439*/
440
441#include <__config>
442#include <__tree>
443#include <iterator>
444#include <memory>
445#include <utility>
446#include <functional>
447#include <initializer_list>
Eric Fiselierf7394302015-06-13 07:08:02 +0000448#include <type_traits>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000449
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000450#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000451#pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000452#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000453
454_LIBCPP_BEGIN_NAMESPACE_STD
455
Eric Fiselierf7394302015-06-13 07:08:02 +0000456template <class _Key, class _CP, class _Compare,
457 bool = is_empty<_Compare>::value && !__libcpp_is_final<_Compare>::value
Howard Hinnantd0aabf82011-12-11 20:31:33 +0000458 >
Howard Hinnantc51e1022010-05-11 19:42:16 +0000459class __map_value_compare
460 : private _Compare
461{
Howard Hinnantc51e1022010-05-11 19:42:16 +0000462public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000463 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000464 __map_value_compare()
465 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
466 : _Compare() {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000467 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000468 __map_value_compare(_Compare c)
469 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
470 : _Compare(c) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000471 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000472 const _Compare& key_comp() const _NOEXCEPT {return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000473 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000474 bool operator()(const _CP& __x, const _CP& __y) const
Howard Hinnant90b91592013-07-05 18:06:00 +0000475 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000476 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000477 bool operator()(const _CP& __x, const _Key& __y) const
Howard Hinnant90b91592013-07-05 18:06:00 +0000478 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000479 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000480 bool operator()(const _Key& __x, const _CP& __y) const
Howard Hinnant90b91592013-07-05 18:06:00 +0000481 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);}
Marshall Clow8982dcd2015-07-13 20:04:56 +0000482 void swap(__map_value_compare&__y)
483 _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value)
484 {
485 using _VSTD::swap;
486 swap(static_cast<const _Compare&>(*this), static_cast<const _Compare&>(__y));
487 }
Marshall Clowebb57322013-08-13 22:18:47 +0000488
489#if _LIBCPP_STD_VER > 11
490 template <typename _K2>
491 _LIBCPP_INLINE_VISIBILITY
492 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
493 operator () ( const _K2& __x, const _CP& __y ) const
494 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);}
495
496 template <typename _K2>
497 _LIBCPP_INLINE_VISIBILITY
498 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
499 operator () (const _CP& __x, const _K2& __y) const
500 {return static_cast<const _Compare&>(*this) (__x.__cc.first, __y);}
501#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000502};
503
Howard Hinnant90b91592013-07-05 18:06:00 +0000504template <class _Key, class _CP, class _Compare>
505class __map_value_compare<_Key, _CP, _Compare, false>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000506{
507 _Compare comp;
508
Howard Hinnantc51e1022010-05-11 19:42:16 +0000509public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000510 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000511 __map_value_compare()
512 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
513 : comp() {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000514 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000515 __map_value_compare(_Compare c)
516 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
517 : comp(c) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000518 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000519 const _Compare& key_comp() const _NOEXCEPT {return comp;}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000520
Howard Hinnant756c69b2010-09-22 16:48:34 +0000521 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000522 bool operator()(const _CP& __x, const _CP& __y) const
Howard Hinnant90b91592013-07-05 18:06:00 +0000523 {return comp(__x.__cc.first, __y.__cc.first);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000524 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000525 bool operator()(const _CP& __x, const _Key& __y) const
Howard Hinnant90b91592013-07-05 18:06:00 +0000526 {return comp(__x.__cc.first, __y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000527 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000528 bool operator()(const _Key& __x, const _CP& __y) const
Howard Hinnant90b91592013-07-05 18:06:00 +0000529 {return comp(__x, __y.__cc.first);}
Marshall Clow8982dcd2015-07-13 20:04:56 +0000530 void swap(__map_value_compare&__y)
531 _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value)
532 {
533 using _VSTD::swap;
534 swap(comp, __y.comp);
535 }
536
Marshall Clowebb57322013-08-13 22:18:47 +0000537#if _LIBCPP_STD_VER > 11
538 template <typename _K2>
539 _LIBCPP_INLINE_VISIBILITY
540 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
541 operator () ( const _K2& __x, const _CP& __y ) const
542 {return comp (__x, __y.__cc.first);}
543
544 template <typename _K2>
545 _LIBCPP_INLINE_VISIBILITY
546 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
547 operator () (const _CP& __x, const _K2& __y) const
548 {return comp (__x.__cc.first, __y);}
549#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000550};
551
Marshall Clow8982dcd2015-07-13 20:04:56 +0000552template <class _Key, class _CP, class _Compare, bool __b>
553inline _LIBCPP_INLINE_VISIBILITY
554void
555swap(__map_value_compare<_Key, _CP, _Compare, __b>& __x,
556 __map_value_compare<_Key, _CP, _Compare, __b>& __y)
557 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
558{
559 __x.swap(__y);
560}
561
Howard Hinnantc51e1022010-05-11 19:42:16 +0000562template <class _Allocator>
563class __map_node_destructor
564{
565 typedef _Allocator allocator_type;
566 typedef allocator_traits<allocator_type> __alloc_traits;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000567
Howard Hinnantc51e1022010-05-11 19:42:16 +0000568public:
569 typedef typename __alloc_traits::pointer pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000570
Eric Fiseliera00b4842016-02-20 05:28:30 +0000571private:
Howard Hinnantc51e1022010-05-11 19:42:16 +0000572 allocator_type& __na_;
573
574 __map_node_destructor& operator=(const __map_node_destructor&);
575
576public:
577 bool __first_constructed;
578 bool __second_constructed;
579
Howard Hinnant756c69b2010-09-22 16:48:34 +0000580 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000581 explicit __map_node_destructor(allocator_type& __na) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000582 : __na_(__na),
583 __first_constructed(false),
584 __second_constructed(false)
585 {}
586
Howard Hinnant74279a52010-09-04 23:28:19 +0000587#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant756c69b2010-09-22 16:48:34 +0000588 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000589 __map_node_destructor(__tree_node_destructor<allocator_type>&& __x) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000590 : __na_(__x.__na_),
591 __first_constructed(__x.__value_constructed),
592 __second_constructed(__x.__value_constructed)
593 {
594 __x.__value_constructed = false;
595 }
Howard Hinnant5dc89112010-09-04 23:46:48 +0000596#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +0000597
Howard Hinnant756c69b2010-09-22 16:48:34 +0000598 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000599 void operator()(pointer __p) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000600 {
601 if (__second_constructed)
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000602 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000603 if (__first_constructed)
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000604 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.first));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000605 if (__p)
606 __alloc_traits::deallocate(__na_, __p, 1);
607 }
608};
609
Howard Hinnant944510a2011-06-14 19:58:17 +0000610template <class _Key, class _Tp, class _Compare, class _Allocator>
611 class map;
612template <class _Key, class _Tp, class _Compare, class _Allocator>
613 class multimap;
614template <class _TreeIterator> class __map_const_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000615
Eric Fiseliera00b4842016-02-20 05:28:30 +0000616#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant89f8b792013-09-30 19:08:22 +0000617
618template <class _Key, class _Tp>
619union __value_type
620{
621 typedef _Key key_type;
622 typedef _Tp mapped_type;
623 typedef pair<const key_type, mapped_type> value_type;
624 typedef pair<key_type, mapped_type> __nc_value_type;
625
626 value_type __cc;
627 __nc_value_type __nc;
628
629 template <class ..._Args>
630 _LIBCPP_INLINE_VISIBILITY
631 __value_type(_Args&& ...__args)
632 : __cc(std::forward<_Args>(__args)...) {}
633
634 _LIBCPP_INLINE_VISIBILITY
635 __value_type(const __value_type& __v)
636 : __cc(__v.__cc) {}
637
638 _LIBCPP_INLINE_VISIBILITY
639 __value_type(__value_type& __v)
640 : __cc(__v.__cc) {}
641
642 _LIBCPP_INLINE_VISIBILITY
643 __value_type(__value_type&& __v)
644 : __nc(std::move(__v.__nc)) {}
645
646 _LIBCPP_INLINE_VISIBILITY
647 __value_type& operator=(const __value_type& __v)
648 {__nc = __v.__cc; return *this;}
649
650 _LIBCPP_INLINE_VISIBILITY
651 __value_type& operator=(__value_type&& __v)
652 {__nc = std::move(__v.__nc); return *this;}
653
654 _LIBCPP_INLINE_VISIBILITY
655 ~__value_type() {__cc.~value_type();}
656};
657
658#else
659
660template <class _Key, class _Tp>
661struct __value_type
662{
663 typedef _Key key_type;
664 typedef _Tp mapped_type;
665 typedef pair<const key_type, mapped_type> value_type;
666
667 value_type __cc;
668
669 _LIBCPP_INLINE_VISIBILITY
670 __value_type() {}
671
672 template <class _A0>
673 _LIBCPP_INLINE_VISIBILITY
674 __value_type(const _A0& __a0)
675 : __cc(__a0) {}
676
677 template <class _A0, class _A1>
678 _LIBCPP_INLINE_VISIBILITY
679 __value_type(const _A0& __a0, const _A1& __a1)
680 : __cc(__a0, __a1) {}
681};
682
683#endif
684
Eric Fiselier44f9fd02015-03-03 20:10:01 +0000685template <class _Tp>
686struct __extract_key_value_types;
687
688template <class _Key, class _Tp>
689struct __extract_key_value_types<__value_type<_Key, _Tp> >
690{
691 typedef _Key const __key_type;
692 typedef _Tp __mapped_type;
693};
694
Howard Hinnantc51e1022010-05-11 19:42:16 +0000695template <class _TreeIterator>
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000696class _LIBCPP_TYPE_VIS_ONLY __map_iterator
Howard Hinnantc51e1022010-05-11 19:42:16 +0000697{
Eric Fiseliera00b4842016-02-20 05:28:30 +0000698 typedef typename _TreeIterator::_NodeTypes _NodeTypes;
699 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
700
Howard Hinnantc51e1022010-05-11 19:42:16 +0000701 _TreeIterator __i_;
702
Howard Hinnantc51e1022010-05-11 19:42:16 +0000703public:
704 typedef bidirectional_iterator_tag iterator_category;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000705 typedef typename _NodeTypes::__map_value_type value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000706 typedef typename _TreeIterator::difference_type difference_type;
707 typedef value_type& reference;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000708 typedef typename _NodeTypes::__map_value_type_pointer pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000709
Howard Hinnant756c69b2010-09-22 16:48:34 +0000710 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000711 __map_iterator() _NOEXCEPT {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000712
Howard Hinnant756c69b2010-09-22 16:48:34 +0000713 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000714 __map_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000715
Howard Hinnant756c69b2010-09-22 16:48:34 +0000716 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000717 reference operator*() const {return __i_->__cc;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000718 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000719 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__cc);}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000720
Howard Hinnant756c69b2010-09-22 16:48:34 +0000721 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000722 __map_iterator& operator++() {++__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000723 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000724 __map_iterator operator++(int)
725 {
726 __map_iterator __t(*this);
727 ++(*this);
728 return __t;
729 }
730
Howard Hinnant756c69b2010-09-22 16:48:34 +0000731 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000732 __map_iterator& operator--() {--__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000733 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000734 __map_iterator operator--(int)
735 {
736 __map_iterator __t(*this);
737 --(*this);
738 return __t;
739 }
740
Howard Hinnant756c69b2010-09-22 16:48:34 +0000741 friend _LIBCPP_INLINE_VISIBILITY
742 bool operator==(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000743 {return __x.__i_ == __y.__i_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000744 friend
745 _LIBCPP_INLINE_VISIBILITY
746 bool operator!=(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000747 {return __x.__i_ != __y.__i_;}
748
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000749 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY map;
750 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY multimap;
751 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __map_const_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000752};
753
754template <class _TreeIterator>
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000755class _LIBCPP_TYPE_VIS_ONLY __map_const_iterator
Howard Hinnantc51e1022010-05-11 19:42:16 +0000756{
Eric Fiseliera00b4842016-02-20 05:28:30 +0000757 typedef typename _TreeIterator::_NodeTypes _NodeTypes;
758 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
759
Howard Hinnantc51e1022010-05-11 19:42:16 +0000760 _TreeIterator __i_;
761
Howard Hinnantc51e1022010-05-11 19:42:16 +0000762public:
763 typedef bidirectional_iterator_tag iterator_category;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000764 typedef typename _NodeTypes::__map_value_type value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000765 typedef typename _TreeIterator::difference_type difference_type;
766 typedef const value_type& reference;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000767 typedef typename _NodeTypes::__const_map_value_type_pointer pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000768
Howard Hinnant756c69b2010-09-22 16:48:34 +0000769 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000770 __map_const_iterator() _NOEXCEPT {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000771
Howard Hinnant756c69b2010-09-22 16:48:34 +0000772 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000773 __map_const_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000774 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier44f9fd02015-03-03 20:10:01 +0000775 __map_const_iterator(__map_iterator<
776 typename _TreeIterator::__non_const_iterator> __i) _NOEXCEPT
777 : __i_(__i.__i_) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000778
Howard Hinnant756c69b2010-09-22 16:48:34 +0000779 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000780 reference operator*() const {return __i_->__cc;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000781 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000782 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__cc);}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000783
Howard Hinnant756c69b2010-09-22 16:48:34 +0000784 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000785 __map_const_iterator& operator++() {++__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000786 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000787 __map_const_iterator operator++(int)
788 {
789 __map_const_iterator __t(*this);
790 ++(*this);
791 return __t;
792 }
793
Howard Hinnant756c69b2010-09-22 16:48:34 +0000794 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000795 __map_const_iterator& operator--() {--__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000796 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000797 __map_const_iterator operator--(int)
798 {
799 __map_const_iterator __t(*this);
800 --(*this);
801 return __t;
802 }
803
Howard Hinnant756c69b2010-09-22 16:48:34 +0000804 friend _LIBCPP_INLINE_VISIBILITY
805 bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000806 {return __x.__i_ == __y.__i_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000807 friend _LIBCPP_INLINE_VISIBILITY
808 bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000809 {return __x.__i_ != __y.__i_;}
810
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000811 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY map;
812 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY multimap;
813 template <class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY __tree_const_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000814};
815
816template <class _Key, class _Tp, class _Compare = less<_Key>,
817 class _Allocator = allocator<pair<const _Key, _Tp> > >
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000818class _LIBCPP_TYPE_VIS_ONLY map
Howard Hinnantc51e1022010-05-11 19:42:16 +0000819{
820public:
821 // types:
822 typedef _Key key_type;
823 typedef _Tp mapped_type;
824 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000825 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000826 typedef _Compare key_compare;
827 typedef _Allocator allocator_type;
828 typedef value_type& reference;
829 typedef const value_type& const_reference;
830
Marshall Clow5128cf32015-11-26 01:24:04 +0000831 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
832 "Allocator::value_type must be same type as value_type");
833
Howard Hinnanta37d3cf2013-08-12 18:38:34 +0000834 class _LIBCPP_TYPE_VIS_ONLY value_compare
Howard Hinnantc51e1022010-05-11 19:42:16 +0000835 : public binary_function<value_type, value_type, bool>
836 {
837 friend class map;
838 protected:
839 key_compare comp;
840
Howard Hinnant756c69b2010-09-22 16:48:34 +0000841 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000842 public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000843 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000844 bool operator()(const value_type& __x, const value_type& __y) const
845 {return comp(__x.first, __y.first);}
846 };
847
848private:
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000849
Howard Hinnant89f8b792013-09-30 19:08:22 +0000850 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant90b91592013-07-05 18:06:00 +0000851 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow940e01c2015-04-07 05:21:38 +0000852 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
853 __value_type>::type __allocator_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000854 typedef __tree<__value_type, __vc, __allocator_type> __base;
855 typedef typename __base::__node_traits __node_traits;
856 typedef allocator_traits<allocator_type> __alloc_traits;
857
858 __base __tree_;
859
860public:
861 typedef typename __alloc_traits::pointer pointer;
862 typedef typename __alloc_traits::const_pointer const_pointer;
863 typedef typename __alloc_traits::size_type size_type;
864 typedef typename __alloc_traits::difference_type difference_type;
Eric Fiselier44f9fd02015-03-03 20:10:01 +0000865 typedef __map_iterator<typename __base::iterator> iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000866 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000867 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
868 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000869
Howard Hinnant756c69b2010-09-22 16:48:34 +0000870 _LIBCPP_INLINE_VISIBILITY
Marshall Clow7086a5a2014-03-10 04:50:10 +0000871 map()
872 _NOEXCEPT_(
873 is_nothrow_default_constructible<allocator_type>::value &&
874 is_nothrow_default_constructible<key_compare>::value &&
875 is_nothrow_copy_constructible<key_compare>::value)
876 : __tree_(__vc(key_compare())) {}
877
878 _LIBCPP_INLINE_VISIBILITY
879 explicit map(const key_compare& __comp)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000880 _NOEXCEPT_(
881 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000882 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000883 : __tree_(__vc(__comp)) {}
884
Howard Hinnant756c69b2010-09-22 16:48:34 +0000885 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000886 explicit map(const key_compare& __comp, const allocator_type& __a)
887 : __tree_(__vc(__comp), __a) {}
888
889 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +0000890 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000891 map(_InputIterator __f, _InputIterator __l,
892 const key_compare& __comp = key_compare())
893 : __tree_(__vc(__comp))
894 {
895 insert(__f, __l);
896 }
897
898 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +0000899 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000900 map(_InputIterator __f, _InputIterator __l,
901 const key_compare& __comp, const allocator_type& __a)
902 : __tree_(__vc(__comp), __a)
903 {
904 insert(__f, __l);
905 }
906
Marshall Clow300abfb2013-09-11 01:15:47 +0000907#if _LIBCPP_STD_VER > 11
908 template <class _InputIterator>
909 _LIBCPP_INLINE_VISIBILITY
910 map(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
911 : map(__f, __l, key_compare(), __a) {}
912#endif
913
Howard Hinnant756c69b2010-09-22 16:48:34 +0000914 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000915 map(const map& __m)
916 : __tree_(__m.__tree_)
917 {
918 insert(__m.begin(), __m.end());
919 }
920
Howard Hinnantd3a657f2011-07-01 19:24:36 +0000921 _LIBCPP_INLINE_VISIBILITY
922 map& operator=(const map& __m)
923 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000924#if __cplusplus >= 201103L
Howard Hinnantd3a657f2011-07-01 19:24:36 +0000925 __tree_ = __m.__tree_;
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000926#else
Marshall Clowdb3cfcb2014-02-08 04:03:14 +0000927 if (this != &__m) {
928 __tree_.clear();
929 __tree_.value_comp() = __m.__tree_.value_comp();
930 __tree_.__copy_assign_alloc(__m.__tree_);
931 insert(__m.begin(), __m.end());
932 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000933#endif
Howard Hinnantd3a657f2011-07-01 19:24:36 +0000934 return *this;
935 }
936
Howard Hinnant74279a52010-09-04 23:28:19 +0000937#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +0000938
Howard Hinnant756c69b2010-09-22 16:48:34 +0000939 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000940 map(map&& __m)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000941 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000942 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantc51e1022010-05-11 19:42:16 +0000943 {
944 }
945
946 map(map&& __m, const allocator_type& __a);
947
Howard Hinnant756c69b2010-09-22 16:48:34 +0000948 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant33711792011-08-12 21:56:02 +0000949 map& operator=(map&& __m)
950 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
951 {
952 __tree_ = _VSTD::move(__m.__tree_);
953 return *this;
954 }
955
956#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
957
958#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
959
960 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000961 map(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
962 : __tree_(__vc(__comp))
963 {
964 insert(__il.begin(), __il.end());
965 }
966
Howard Hinnant756c69b2010-09-22 16:48:34 +0000967 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000968 map(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
969 : __tree_(__vc(__comp), __a)
970 {
971 insert(__il.begin(), __il.end());
972 }
973
Marshall Clow300abfb2013-09-11 01:15:47 +0000974#if _LIBCPP_STD_VER > 11
975 _LIBCPP_INLINE_VISIBILITY
976 map(initializer_list<value_type> __il, const allocator_type& __a)
977 : map(__il, key_compare(), __a) {}
978#endif
979
Howard Hinnant756c69b2010-09-22 16:48:34 +0000980 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000981 map& operator=(initializer_list<value_type> __il)
982 {
983 __tree_.__assign_unique(__il.begin(), __il.end());
984 return *this;
985 }
986
Howard Hinnant33711792011-08-12 21:56:02 +0000987#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000988
Howard Hinnant756c69b2010-09-22 16:48:34 +0000989 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000990 explicit map(const allocator_type& __a)
991 : __tree_(__a)
992 {
993 }
994
Howard Hinnant756c69b2010-09-22 16:48:34 +0000995 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000996 map(const map& __m, const allocator_type& __a)
997 : __tree_(__m.__tree_.value_comp(), __a)
998 {
999 insert(__m.begin(), __m.end());
1000 }
1001
Howard Hinnant756c69b2010-09-22 16:48:34 +00001002 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001003 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001005 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001006 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001007 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001008 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001009 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001010
Howard Hinnant756c69b2010-09-22 16:48:34 +00001011 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001012 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001013 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001014 const_reverse_iterator rbegin() const _NOEXCEPT
1015 {return const_reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001016 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001017 reverse_iterator rend() _NOEXCEPT
1018 {return reverse_iterator(begin());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001019 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001020 const_reverse_iterator rend() const _NOEXCEPT
1021 {return const_reverse_iterator(begin());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001022
Howard Hinnant756c69b2010-09-22 16:48:34 +00001023 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001024 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001025 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001026 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001027 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001028 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001030 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001031
Howard Hinnant756c69b2010-09-22 16:48:34 +00001032 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001033 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001034 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001035 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001036 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001037 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001038
1039 mapped_type& operator[](const key_type& __k);
Howard Hinnant74279a52010-09-04 23:28:19 +00001040#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001041 mapped_type& operator[](key_type&& __k);
1042#endif
1043
1044 mapped_type& at(const key_type& __k);
1045 const mapped_type& at(const key_type& __k) const;
1046
Howard Hinnant756c69b2010-09-22 16:48:34 +00001047 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001048 allocator_type get_allocator() const _NOEXCEPT {return __tree_.__alloc();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001049 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001050 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001051 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001052 value_compare value_comp() const {return value_compare(__tree_.value_comp().key_comp());}
1053
Howard Hinnant74279a52010-09-04 23:28:19 +00001054#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant74279a52010-09-04 23:28:19 +00001055#ifndef _LIBCPP_HAS_NO_VARIADICS
1056
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001057 template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001058 pair<iterator, bool>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001059 emplace(_Args&& ...__args);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001060
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001061 template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001062 iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001063 emplace_hint(const_iterator __p, _Args&& ...__args);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001064
Howard Hinnant74279a52010-09-04 23:28:19 +00001065#endif // _LIBCPP_HAS_NO_VARIADICS
1066
Howard Hinnantc834c512011-11-29 18:15:50 +00001067 template <class _Pp,
1068 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001069 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001070 pair<iterator, bool> insert(_Pp&& __p)
1071 {return __tree_.__insert_unique(_VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001072
Howard Hinnantc834c512011-11-29 18:15:50 +00001073 template <class _Pp,
1074 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001075 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001076 iterator insert(const_iterator __pos, _Pp&& __p)
1077 {return __tree_.__insert_unique(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001078
Howard Hinnant74279a52010-09-04 23:28:19 +00001079#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001080
Howard Hinnant756c69b2010-09-22 16:48:34 +00001081 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001082 pair<iterator, bool>
1083 insert(const value_type& __v) {return __tree_.__insert_unique(__v);}
1084
Howard Hinnant756c69b2010-09-22 16:48:34 +00001085 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001086 iterator
1087 insert(const_iterator __p, const value_type& __v)
1088 {return __tree_.__insert_unique(__p.__i_, __v);}
1089
Marshall Clowd430d022016-01-05 19:32:41 +00001090#if _LIBCPP_STD_VER > 14 && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1091 _LIBCPP_INLINE_VISIBILITY
1092 pair<iterator, bool>
1093 insert( value_type&& __v) {return __tree_.__insert_unique(_VSTD::forward<value_type>(__v));}
1094
1095 _LIBCPP_INLINE_VISIBILITY
1096 iterator
1097 insert(const_iterator __p, value_type&& __v)
1098 {return __tree_.__insert_unique(__p.__i_, _VSTD::forward<value_type>(__v));}
1099#endif
1100
Howard Hinnantc51e1022010-05-11 19:42:16 +00001101 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001102 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001103 void insert(_InputIterator __f, _InputIterator __l)
1104 {
1105 for (const_iterator __e = cend(); __f != __l; ++__f)
1106 insert(__e.__i_, *__f);
1107 }
1108
Howard Hinnant33711792011-08-12 21:56:02 +00001109#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1110
Howard Hinnant756c69b2010-09-22 16:48:34 +00001111 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001112 void insert(initializer_list<value_type> __il)
1113 {insert(__il.begin(), __il.end());}
1114
Howard Hinnant33711792011-08-12 21:56:02 +00001115#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1116
Marshall Clow3223db82015-07-07 03:37:33 +00001117#if _LIBCPP_STD_VER > 14
1118#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
1119#ifndef _LIBCPP_HAS_NO_VARIADICS
1120 template <class... _Args>
1121 _LIBCPP_INLINE_VISIBILITY
1122 pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args)
1123 {
1124 iterator __p = lower_bound(__k);
1125 if ( __p != end() && !key_comp()(__k, __p->first))
1126 return _VSTD::make_pair(__p, false);
1127 else
1128 return _VSTD::make_pair(
1129 emplace_hint(__p,
1130 _VSTD::piecewise_construct, _VSTD::forward_as_tuple(__k),
1131 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)),
1132 true);
1133 }
1134
1135 template <class... _Args>
1136 _LIBCPP_INLINE_VISIBILITY
1137 pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args)
1138 {
1139 iterator __p = lower_bound(__k);
1140 if ( __p != end() && !key_comp()(__k, __p->first))
1141 return _VSTD::make_pair(__p, false);
1142 else
1143 return _VSTD::make_pair(
1144 emplace_hint(__p,
1145 _VSTD::piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__k)),
1146 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)),
1147 true);
1148 }
1149
1150 template <class... _Args>
1151 _LIBCPP_INLINE_VISIBILITY
1152 iterator try_emplace(const_iterator __h, const key_type& __k, _Args&&... __args)
1153 {
1154 iterator __p = lower_bound(__k);
1155 if ( __p != end() && !key_comp()(__k, __p->first))
1156 return __p;
1157 else
1158 return emplace_hint(__p,
1159 _VSTD::piecewise_construct, _VSTD::forward_as_tuple(__k),
1160 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
1161 }
1162
1163 template <class... _Args>
1164 _LIBCPP_INLINE_VISIBILITY
1165 iterator try_emplace(const_iterator __h, key_type&& __k, _Args&&... __args)
1166 {
1167 iterator __p = lower_bound(__k);
1168 if ( __p != end() && !key_comp()(__k, __p->first))
1169 return __p;
1170 else
1171 return emplace_hint(__p,
1172 _VSTD::piecewise_construct, _VSTD::forward_as_tuple(_VSTD::move(__k)),
1173 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
1174 }
1175
1176 template <class _Vp>
1177 _LIBCPP_INLINE_VISIBILITY
1178 pair<iterator, bool> insert_or_assign(const key_type& __k, _Vp&& __v)
1179 {
1180 iterator __p = lower_bound(__k);
1181 if ( __p != end() && !key_comp()(__k, __p->first))
1182 {
1183 __p->second = _VSTD::forward<_Vp>(__v);
1184 return _VSTD::make_pair(__p, false);
1185 }
1186 return _VSTD::make_pair(emplace_hint(__p, __k, _VSTD::forward<_Vp>(__v)), true);
1187 }
1188
1189 template <class _Vp>
1190 _LIBCPP_INLINE_VISIBILITY
1191 pair<iterator, bool> insert_or_assign(key_type&& __k, _Vp&& __v)
1192 {
1193 iterator __p = lower_bound(__k);
1194 if ( __p != end() && !key_comp()(__k, __p->first))
1195 {
1196 __p->second = _VSTD::forward<_Vp>(__v);
1197 return _VSTD::make_pair(__p, false);
1198 }
1199 return _VSTD::make_pair(emplace_hint(__p, _VSTD::move(__k), _VSTD::forward<_Vp>(__v)), true);
1200 }
1201
1202 template <class _Vp>
1203 _LIBCPP_INLINE_VISIBILITY
1204 iterator insert_or_assign(const_iterator __h, const key_type& __k, _Vp&& __v)
1205 {
1206 iterator __p = lower_bound(__k);
1207 if ( __p != end() && !key_comp()(__k, __p->first))
1208 {
1209 __p->second = _VSTD::forward<_Vp>(__v);
1210 return __p;
1211 }
1212 return emplace_hint(__h, __k, _VSTD::forward<_Vp>(__v));
1213 }
1214
1215 template <class _Vp>
1216 _LIBCPP_INLINE_VISIBILITY
1217 iterator insert_or_assign(const_iterator __h, key_type&& __k, _Vp&& __v)
1218 {
1219 iterator __p = lower_bound(__k);
1220 if ( __p != end() && !key_comp()(__k, __p->first))
1221 {
1222 __p->second = _VSTD::forward<_Vp>(__v);
1223 return __p;
1224 }
1225 return emplace_hint(__h, _VSTD::move(__k), _VSTD::forward<_Vp>(__v));
1226 }
1227#endif
1228#endif
1229#endif
1230
Howard Hinnant756c69b2010-09-22 16:48:34 +00001231 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001232 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001233 _LIBCPP_INLINE_VISIBILITY
Marshall Clow22ea5b82015-05-10 13:35:00 +00001234 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1235 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001236 size_type erase(const key_type& __k)
1237 {return __tree_.__erase_unique(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001238 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001239 iterator erase(const_iterator __f, const_iterator __l)
1240 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001241 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001242 void clear() _NOEXCEPT {__tree_.clear();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001243
Howard Hinnant756c69b2010-09-22 16:48:34 +00001244 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001245 void swap(map& __m)
1246 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1247 {__tree_.swap(__m.__tree_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001248
Howard Hinnant756c69b2010-09-22 16:48:34 +00001249 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001250 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001251 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001252 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001253#if _LIBCPP_STD_VER > 11
1254 template <typename _K2>
1255 _LIBCPP_INLINE_VISIBILITY
1256 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1257 find(const _K2& __k) {return __tree_.find(__k);}
1258 template <typename _K2>
1259 _LIBCPP_INLINE_VISIBILITY
1260 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1261 find(const _K2& __k) const {return __tree_.find(__k);}
1262#endif
1263
Howard Hinnant756c69b2010-09-22 16:48:34 +00001264 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001265 size_type count(const key_type& __k) const
1266 {return __tree_.__count_unique(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00001267#if _LIBCPP_STD_VER > 11
1268 template <typename _K2>
1269 _LIBCPP_INLINE_VISIBILITY
1270 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Marshall Clow141e47b2015-06-30 18:15:41 +00001271 count(const _K2& __k) const {return __tree_.__count_unique(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00001272#endif
Howard Hinnant756c69b2010-09-22 16:48:34 +00001273 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001274 iterator lower_bound(const key_type& __k)
1275 {return __tree_.lower_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001276 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001277 const_iterator lower_bound(const key_type& __k) const
1278 {return __tree_.lower_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001279#if _LIBCPP_STD_VER > 11
1280 template <typename _K2>
1281 _LIBCPP_INLINE_VISIBILITY
1282 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1283 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1284
1285 template <typename _K2>
1286 _LIBCPP_INLINE_VISIBILITY
1287 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1288 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1289#endif
1290
Howard Hinnant756c69b2010-09-22 16:48:34 +00001291 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001292 iterator upper_bound(const key_type& __k)
1293 {return __tree_.upper_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001294 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001295 const_iterator upper_bound(const key_type& __k) const
1296 {return __tree_.upper_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001297#if _LIBCPP_STD_VER > 11
1298 template <typename _K2>
1299 _LIBCPP_INLINE_VISIBILITY
1300 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1301 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
1302 template <typename _K2>
1303 _LIBCPP_INLINE_VISIBILITY
1304 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1305 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
1306#endif
1307
Howard Hinnant756c69b2010-09-22 16:48:34 +00001308 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001309 pair<iterator,iterator> equal_range(const key_type& __k)
1310 {return __tree_.__equal_range_unique(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001311 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001312 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
1313 {return __tree_.__equal_range_unique(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001314#if _LIBCPP_STD_VER > 11
1315 template <typename _K2>
1316 _LIBCPP_INLINE_VISIBILITY
1317 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
1318 equal_range(const _K2& __k) {return __tree_.__equal_range_unique(__k);}
1319 template <typename _K2>
1320 _LIBCPP_INLINE_VISIBILITY
1321 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
1322 equal_range(const _K2& __k) const {return __tree_.__equal_range_unique(__k);}
1323#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00001324
1325private:
1326 typedef typename __base::__node __node;
1327 typedef typename __base::__node_allocator __node_allocator;
1328 typedef typename __base::__node_pointer __node_pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001329 typedef typename __base::__node_base_pointer __node_base_pointer;
Eric Fiseliera92b0732016-02-20 07:12:17 +00001330
Howard Hinnantc834c512011-11-29 18:15:50 +00001331 typedef __map_node_destructor<__node_allocator> _Dp;
1332 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001333
Howard Hinnant74279a52010-09-04 23:28:19 +00001334#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001335 __node_holder __construct_node();
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001336 template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00001337 __node_holder __construct_node(_A0&& __a0);
1338 __node_holder __construct_node_with_key(key_type&& __k);
Howard Hinnant74279a52010-09-04 23:28:19 +00001339#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001340 template <class _A0, class _A1, class ..._Args>
1341 __node_holder __construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args);
Howard Hinnant74279a52010-09-04 23:28:19 +00001342#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001343#endif
Howard Hinnantac7e7482013-07-04 20:59:16 +00001344 __node_holder __construct_node_with_key(const key_type& __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001345
Eric Fiseliera92b0732016-02-20 07:12:17 +00001346 __node_base_pointer const&
1347 __find_equal_key(__node_base_pointer& __parent, const key_type& __k) const;
1348
1349 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001350 __node_base_pointer&
Eric Fiseliera92b0732016-02-20 07:12:17 +00001351 __find_equal_key(__node_base_pointer& __parent, const key_type& __k) {
1352 map const* __const_this = this;
1353 return const_cast<__node_base_pointer&>(
1354 __const_this->__find_equal_key(__parent, __k));
1355 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00001356};
1357
Eric Fiseliera92b0732016-02-20 07:12:17 +00001358
1359// Find __k
1360// Set __parent to parent of null leaf and
1361// return reference to null leaf iv __k does not exist.
Howard Hinnantc51e1022010-05-11 19:42:16 +00001362// If __k exists, set parent to node of __k and return reference to node of __k
1363template <class _Key, class _Tp, class _Compare, class _Allocator>
Eric Fiseliera92b0732016-02-20 07:12:17 +00001364typename map<_Key, _Tp, _Compare, _Allocator>::__node_base_pointer const&
Howard Hinnantc51e1022010-05-11 19:42:16 +00001365map<_Key, _Tp, _Compare, _Allocator>::__find_equal_key(__node_base_pointer& __parent,
Eric Fiseliera92b0732016-02-20 07:12:17 +00001366 const key_type& __k) const
Howard Hinnantc51e1022010-05-11 19:42:16 +00001367{
1368 __node_pointer __nd = __tree_.__root();
1369 if (__nd != nullptr)
1370 {
1371 while (true)
1372 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001373 if (__tree_.value_comp().key_comp()(__k, __nd->__value_.__cc.first))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001374 {
1375 if (__nd->__left_ != nullptr)
1376 __nd = static_cast<__node_pointer>(__nd->__left_);
1377 else
1378 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001379 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001380 return __parent->__left_;
1381 }
1382 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001383 else if (__tree_.value_comp().key_comp()(__nd->__value_.__cc.first, __k))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001384 {
1385 if (__nd->__right_ != nullptr)
1386 __nd = static_cast<__node_pointer>(__nd->__right_);
1387 else
1388 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001389 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001390 return __parent->__right_;
1391 }
1392 }
1393 else
1394 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001395 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001396 return __parent;
1397 }
1398 }
1399 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001400 __parent = static_cast<__node_base_pointer>(__tree_.__end_node());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001401 return __parent->__left_;
1402}
1403
Howard Hinnant74279a52010-09-04 23:28:19 +00001404#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001405
1406template <class _Key, class _Tp, class _Compare, class _Allocator>
1407map<_Key, _Tp, _Compare, _Allocator>::map(map&& __m, const allocator_type& __a)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001408 : __tree_(_VSTD::move(__m.__tree_), __a)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001409{
1410 if (__a != __m.get_allocator())
1411 {
1412 const_iterator __e = cend();
1413 while (!__m.empty())
1414 __tree_.__insert_unique(__e.__i_,
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001415 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001416 }
1417}
1418
1419template <class _Key, class _Tp, class _Compare, class _Allocator>
1420typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1421map<_Key, _Tp, _Compare, _Allocator>::__construct_node()
1422{
1423 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001424 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001425 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001426 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001427 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001428 __h.get_deleter().__second_constructed = true;
1429 return __h;
1430}
1431
1432template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001433template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00001434typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantc51e1022010-05-11 19:42:16 +00001435map<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0)
1436{
1437 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001438 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001439 __node_traits::construct(__na, _VSTD::addressof(__h->__value_), _VSTD::forward<_A0>(__a0));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001440 __h.get_deleter().__first_constructed = true;
1441 __h.get_deleter().__second_constructed = true;
1442 return __h;
1443}
1444
1445template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnantac7e7482013-07-04 20:59:16 +00001446typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1447map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(key_type&& __k)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001448{
1449 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001450 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantac7e7482013-07-04 20:59:16 +00001451 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), _VSTD::move(__k));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001452 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001453 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001454 __h.get_deleter().__second_constructed = true;
Howard Hinnanta31e9682013-08-22 18:29:50 +00001455 return __h;
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001456}
1457
1458#ifndef _LIBCPP_HAS_NO_VARIADICS
1459
1460template <class _Key, class _Tp, class _Compare, class _Allocator>
1461template <class _A0, class _A1, class ..._Args>
1462typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1463map<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args)
1464{
1465 __node_allocator& __na = __tree_.__node_alloc();
1466 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
1467 __node_traits::construct(__na, _VSTD::addressof(__h->__value_),
1468 _VSTD::forward<_A0>(__a0), _VSTD::forward<_A1>(__a1),
1469 _VSTD::forward<_Args>(__args)...);
1470 __h.get_deleter().__first_constructed = true;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001471 __h.get_deleter().__second_constructed = true;
1472 return __h;
1473}
1474
Howard Hinnant74279a52010-09-04 23:28:19 +00001475#endif // _LIBCPP_HAS_NO_VARIADICS
1476
Howard Hinnantac7e7482013-07-04 20:59:16 +00001477#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001478
1479template <class _Key, class _Tp, class _Compare, class _Allocator>
1480typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantac7e7482013-07-04 20:59:16 +00001481map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(const key_type& __k)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001482{
1483 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001484 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001485 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001486 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001487 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001488 __h.get_deleter().__second_constructed = true;
Dimitry Andric830fb602015-08-19 06:43:33 +00001489 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
Howard Hinnantc51e1022010-05-11 19:42:16 +00001490}
1491
Howard Hinnantc51e1022010-05-11 19:42:16 +00001492template <class _Key, class _Tp, class _Compare, class _Allocator>
1493_Tp&
1494map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1495{
1496 __node_base_pointer __parent;
1497 __node_base_pointer& __child = __find_equal_key(__parent, __k);
1498 __node_pointer __r = static_cast<__node_pointer>(__child);
1499 if (__child == nullptr)
1500 {
Howard Hinnantac7e7482013-07-04 20:59:16 +00001501 __node_holder __h = __construct_node_with_key(__k);
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001502 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001503 __r = __h.release();
1504 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001505 return __r->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001506}
1507
Howard Hinnant74279a52010-09-04 23:28:19 +00001508#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001509
1510template <class _Key, class _Tp, class _Compare, class _Allocator>
1511_Tp&
1512map<_Key, _Tp, _Compare, _Allocator>::operator[](key_type&& __k)
1513{
1514 __node_base_pointer __parent;
1515 __node_base_pointer& __child = __find_equal_key(__parent, __k);
1516 __node_pointer __r = static_cast<__node_pointer>(__child);
1517 if (__child == nullptr)
1518 {
Howard Hinnantac7e7482013-07-04 20:59:16 +00001519 __node_holder __h = __construct_node_with_key(_VSTD::move(__k));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001520 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001521 __r = __h.release();
1522 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001523 return __r->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001524}
1525
Howard Hinnant74279a52010-09-04 23:28:19 +00001526#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001527
1528template <class _Key, class _Tp, class _Compare, class _Allocator>
1529_Tp&
1530map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k)
1531{
1532 __node_base_pointer __parent;
1533 __node_base_pointer& __child = __find_equal_key(__parent, __k);
Howard Hinnant72f73582010-08-11 17:04:31 +00001534#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001535 if (__child == nullptr)
1536 throw out_of_range("map::at: key not found");
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001537#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001538 return static_cast<__node_pointer>(__child)->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001539}
1540
1541template <class _Key, class _Tp, class _Compare, class _Allocator>
1542const _Tp&
1543map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) const
1544{
Eric Fiseliera92b0732016-02-20 07:12:17 +00001545 __node_base_pointer __parent;
1546 __node_base_pointer __child = __find_equal_key(__parent, __k);
Howard Hinnant72f73582010-08-11 17:04:31 +00001547#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001548 if (__child == nullptr)
1549 throw out_of_range("map::at: key not found");
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001550#endif // _LIBCPP_NO_EXCEPTIONS
Eric Fiseliera92b0732016-02-20 07:12:17 +00001551 return static_cast<__node_pointer>(__child)->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001552}
1553
Howard Hinnant74279a52010-09-04 23:28:19 +00001554#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001555
1556template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001557template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001558pair<typename map<_Key, _Tp, _Compare, _Allocator>::iterator, bool>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001559map<_Key, _Tp, _Compare, _Allocator>::emplace(_Args&& ...__args)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001560{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001561 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001562 pair<iterator, bool> __r = __tree_.__node_insert_unique(__h.get());
1563 if (__r.second)
1564 __h.release();
1565 return __r;
1566}
1567
1568template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001569template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001570typename map<_Key, _Tp, _Compare, _Allocator>::iterator
1571map<_Key, _Tp, _Compare, _Allocator>::emplace_hint(const_iterator __p,
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001572 _Args&& ...__args)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001573{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001574 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001575 iterator __r = __tree_.__node_insert_unique(__p.__i_, __h.get());
1576 if (__r.__i_.__ptr_ == __h.get())
1577 __h.release();
1578 return __r;
1579}
1580
Howard Hinnant74279a52010-09-04 23:28:19 +00001581#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001582
1583template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001584inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001585bool
1586operator==(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1587 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1588{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001589 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001590}
1591
1592template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001593inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001594bool
1595operator< (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1596 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1597{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001598 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001599}
1600
1601template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001602inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001603bool
1604operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1605 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1606{
1607 return !(__x == __y);
1608}
1609
1610template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001611inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001612bool
1613operator> (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1614 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1615{
1616 return __y < __x;
1617}
1618
1619template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001620inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001621bool
1622operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1623 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1624{
1625 return !(__x < __y);
1626}
1627
1628template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001629inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001630bool
1631operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1632 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1633{
1634 return !(__y < __x);
1635}
1636
1637template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001638inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001639void
1640swap(map<_Key, _Tp, _Compare, _Allocator>& __x,
1641 map<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001642 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001643{
1644 __x.swap(__y);
1645}
1646
1647template <class _Key, class _Tp, class _Compare = less<_Key>,
1648 class _Allocator = allocator<pair<const _Key, _Tp> > >
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00001649class _LIBCPP_TYPE_VIS_ONLY multimap
Howard Hinnantc51e1022010-05-11 19:42:16 +00001650{
1651public:
1652 // types:
1653 typedef _Key key_type;
1654 typedef _Tp mapped_type;
1655 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001656 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001657 typedef _Compare key_compare;
1658 typedef _Allocator allocator_type;
1659 typedef value_type& reference;
1660 typedef const value_type& const_reference;
1661
Marshall Clow5128cf32015-11-26 01:24:04 +00001662 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
1663 "Allocator::value_type must be same type as value_type");
1664
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00001665 class _LIBCPP_TYPE_VIS_ONLY value_compare
Howard Hinnantc51e1022010-05-11 19:42:16 +00001666 : public binary_function<value_type, value_type, bool>
1667 {
1668 friend class multimap;
1669 protected:
1670 key_compare comp;
1671
Howard Hinnant756c69b2010-09-22 16:48:34 +00001672 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001673 value_compare(key_compare c) : comp(c) {}
1674 public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00001675 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001676 bool operator()(const value_type& __x, const value_type& __y) const
1677 {return comp(__x.first, __y.first);}
1678 };
1679
1680private:
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001681
Howard Hinnant89f8b792013-09-30 19:08:22 +00001682 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant90b91592013-07-05 18:06:00 +00001683 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow940e01c2015-04-07 05:21:38 +00001684 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
1685 __value_type>::type __allocator_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001686 typedef __tree<__value_type, __vc, __allocator_type> __base;
1687 typedef typename __base::__node_traits __node_traits;
1688 typedef allocator_traits<allocator_type> __alloc_traits;
1689
1690 __base __tree_;
1691
1692public:
1693 typedef typename __alloc_traits::pointer pointer;
1694 typedef typename __alloc_traits::const_pointer const_pointer;
1695 typedef typename __alloc_traits::size_type size_type;
1696 typedef typename __alloc_traits::difference_type difference_type;
1697 typedef __map_iterator<typename __base::iterator> iterator;
1698 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001699 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
1700 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001701
Howard Hinnant756c69b2010-09-22 16:48:34 +00001702 _LIBCPP_INLINE_VISIBILITY
Marshall Clow7086a5a2014-03-10 04:50:10 +00001703 multimap()
1704 _NOEXCEPT_(
1705 is_nothrow_default_constructible<allocator_type>::value &&
1706 is_nothrow_default_constructible<key_compare>::value &&
1707 is_nothrow_copy_constructible<key_compare>::value)
1708 : __tree_(__vc(key_compare())) {}
1709
1710 _LIBCPP_INLINE_VISIBILITY
1711 explicit multimap(const key_compare& __comp)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001712 _NOEXCEPT_(
1713 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001714 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001715 : __tree_(__vc(__comp)) {}
1716
Howard Hinnant756c69b2010-09-22 16:48:34 +00001717 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001718 explicit multimap(const key_compare& __comp, const allocator_type& __a)
1719 : __tree_(__vc(__comp), __a) {}
1720
1721 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001722 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001723 multimap(_InputIterator __f, _InputIterator __l,
1724 const key_compare& __comp = key_compare())
1725 : __tree_(__vc(__comp))
1726 {
1727 insert(__f, __l);
1728 }
1729
1730 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001731 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001732 multimap(_InputIterator __f, _InputIterator __l,
1733 const key_compare& __comp, const allocator_type& __a)
1734 : __tree_(__vc(__comp), __a)
1735 {
1736 insert(__f, __l);
1737 }
1738
Marshall Clow300abfb2013-09-11 01:15:47 +00001739#if _LIBCPP_STD_VER > 11
1740 template <class _InputIterator>
1741 _LIBCPP_INLINE_VISIBILITY
1742 multimap(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
1743 : multimap(__f, __l, key_compare(), __a) {}
1744#endif
1745
Howard Hinnant756c69b2010-09-22 16:48:34 +00001746 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001747 multimap(const multimap& __m)
1748 : __tree_(__m.__tree_.value_comp(),
1749 __alloc_traits::select_on_container_copy_construction(__m.__tree_.__alloc()))
1750 {
1751 insert(__m.begin(), __m.end());
1752 }
1753
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001754 _LIBCPP_INLINE_VISIBILITY
1755 multimap& operator=(const multimap& __m)
1756 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001757#if __cplusplus >= 201103L
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001758 __tree_ = __m.__tree_;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001759#else
Marshall Clowdb3cfcb2014-02-08 04:03:14 +00001760 if (this != &__m) {
1761 __tree_.clear();
1762 __tree_.value_comp() = __m.__tree_.value_comp();
1763 __tree_.__copy_assign_alloc(__m.__tree_);
1764 insert(__m.begin(), __m.end());
1765 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001766#endif
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001767 return *this;
1768 }
1769
Howard Hinnant74279a52010-09-04 23:28:19 +00001770#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001771
Howard Hinnant756c69b2010-09-22 16:48:34 +00001772 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001773 multimap(multimap&& __m)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001774 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001775 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001776 {
1777 }
1778
1779 multimap(multimap&& __m, const allocator_type& __a);
1780
Howard Hinnant756c69b2010-09-22 16:48:34 +00001781 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant33711792011-08-12 21:56:02 +00001782 multimap& operator=(multimap&& __m)
1783 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1784 {
1785 __tree_ = _VSTD::move(__m.__tree_);
1786 return *this;
1787 }
1788
1789#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
1790
1791#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1792
1793 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001794 multimap(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
1795 : __tree_(__vc(__comp))
1796 {
1797 insert(__il.begin(), __il.end());
1798 }
1799
Howard Hinnant756c69b2010-09-22 16:48:34 +00001800 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001801 multimap(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
1802 : __tree_(__vc(__comp), __a)
1803 {
1804 insert(__il.begin(), __il.end());
1805 }
1806
Marshall Clow300abfb2013-09-11 01:15:47 +00001807#if _LIBCPP_STD_VER > 11
1808 _LIBCPP_INLINE_VISIBILITY
1809 multimap(initializer_list<value_type> __il, const allocator_type& __a)
1810 : multimap(__il, key_compare(), __a) {}
1811#endif
1812
Howard Hinnant756c69b2010-09-22 16:48:34 +00001813 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001814 multimap& operator=(initializer_list<value_type> __il)
1815 {
1816 __tree_.__assign_multi(__il.begin(), __il.end());
1817 return *this;
1818 }
Howard Hinnant33711792011-08-12 21:56:02 +00001819
1820#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001821
Howard Hinnant756c69b2010-09-22 16:48:34 +00001822 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001823 explicit multimap(const allocator_type& __a)
1824 : __tree_(__a)
1825 {
1826 }
1827
Howard Hinnant756c69b2010-09-22 16:48:34 +00001828 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001829 multimap(const multimap& __m, const allocator_type& __a)
1830 : __tree_(__m.__tree_.value_comp(), __a)
1831 {
1832 insert(__m.begin(), __m.end());
1833 }
1834
Howard Hinnant756c69b2010-09-22 16:48:34 +00001835 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001836 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001837 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001838 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001839 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001840 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001841 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001842 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001843
Howard Hinnant756c69b2010-09-22 16:48:34 +00001844 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001845 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001846 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001847 const_reverse_iterator rbegin() const _NOEXCEPT
1848 {return const_reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001849 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001850 reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001851 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001852 const_reverse_iterator rend() const _NOEXCEPT
1853 {return const_reverse_iterator(begin());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001854
Howard Hinnant756c69b2010-09-22 16:48:34 +00001855 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001856 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001857 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001858 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001859 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001860 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001861 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001862 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001863
Howard Hinnant756c69b2010-09-22 16:48:34 +00001864 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001865 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001866 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001867 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001868 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001869 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001870
Howard Hinnant756c69b2010-09-22 16:48:34 +00001871 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001872 allocator_type get_allocator() const _NOEXCEPT {return __tree_.__alloc();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001873 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001874 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001875 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001876 value_compare value_comp() const
1877 {return value_compare(__tree_.value_comp().key_comp());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001878
Howard Hinnant74279a52010-09-04 23:28:19 +00001879#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant74279a52010-09-04 23:28:19 +00001880#ifndef _LIBCPP_HAS_NO_VARIADICS
1881
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001882 template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001883 iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001884 emplace(_Args&& ...__args);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001885
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001886 template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001887 iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001888 emplace_hint(const_iterator __p, _Args&& ...__args);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001889
Howard Hinnant74279a52010-09-04 23:28:19 +00001890#endif // _LIBCPP_HAS_NO_VARIADICS
1891
Howard Hinnantc834c512011-11-29 18:15:50 +00001892 template <class _Pp,
1893 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001894 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001895 iterator insert(_Pp&& __p)
1896 {return __tree_.__insert_multi(_VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001897
Howard Hinnantc834c512011-11-29 18:15:50 +00001898 template <class _Pp,
1899 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001900 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001901 iterator insert(const_iterator __pos, _Pp&& __p)
1902 {return __tree_.__insert_multi(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001903
Howard Hinnant74279a52010-09-04 23:28:19 +00001904#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001905
Howard Hinnant756c69b2010-09-22 16:48:34 +00001906 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001907 iterator insert(const value_type& __v) {return __tree_.__insert_multi(__v);}
1908
Howard Hinnant756c69b2010-09-22 16:48:34 +00001909 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001910 iterator insert(const_iterator __p, const value_type& __v)
1911 {return __tree_.__insert_multi(__p.__i_, __v);}
1912
Marshall Clowd430d022016-01-05 19:32:41 +00001913#if _LIBCPP_STD_VER > 14 && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1914 _LIBCPP_INLINE_VISIBILITY
1915 iterator insert( value_type&& __v) {return __tree_.__insert_multi(_VSTD::forward<value_type>(__v));}
1916
1917 _LIBCPP_INLINE_VISIBILITY
1918 iterator insert(const_iterator __p, value_type&& __v)
1919 {return __tree_.__insert_multi(__p.__i_, _VSTD::forward<value_type>(__v));}
1920#endif
1921
Howard Hinnantc51e1022010-05-11 19:42:16 +00001922 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001923 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001924 void insert(_InputIterator __f, _InputIterator __l)
1925 {
1926 for (const_iterator __e = cend(); __f != __l; ++__f)
1927 __tree_.__insert_multi(__e.__i_, *__f);
1928 }
1929
Howard Hinnant33711792011-08-12 21:56:02 +00001930#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1931
Howard Hinnant756c69b2010-09-22 16:48:34 +00001932 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001933 void insert(initializer_list<value_type> __il)
1934 {insert(__il.begin(), __il.end());}
1935
Howard Hinnant33711792011-08-12 21:56:02 +00001936#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1937
Howard Hinnant756c69b2010-09-22 16:48:34 +00001938 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001939 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001940 _LIBCPP_INLINE_VISIBILITY
Marshall Clow22ea5b82015-05-10 13:35:00 +00001941 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1942 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001943 size_type erase(const key_type& __k) {return __tree_.__erase_multi(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001944 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001945 iterator erase(const_iterator __f, const_iterator __l)
1946 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001947 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001948 void clear() {__tree_.clear();}
1949
Howard Hinnant756c69b2010-09-22 16:48:34 +00001950 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001951 void swap(multimap& __m)
1952 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1953 {__tree_.swap(__m.__tree_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001954
Howard Hinnant756c69b2010-09-22 16:48:34 +00001955 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001956 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001957 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001958 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001959#if _LIBCPP_STD_VER > 11
1960 template <typename _K2>
1961 _LIBCPP_INLINE_VISIBILITY
1962 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1963 find(const _K2& __k) {return __tree_.find(__k);}
1964 template <typename _K2>
1965 _LIBCPP_INLINE_VISIBILITY
1966 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1967 find(const _K2& __k) const {return __tree_.find(__k);}
1968#endif
1969
Howard Hinnant756c69b2010-09-22 16:48:34 +00001970 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001971 size_type count(const key_type& __k) const
1972 {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00001973#if _LIBCPP_STD_VER > 11
1974 template <typename _K2>
1975 _LIBCPP_INLINE_VISIBILITY
1976 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Marshall Clow141e47b2015-06-30 18:15:41 +00001977 count(const _K2& __k) const {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00001978#endif
Howard Hinnant756c69b2010-09-22 16:48:34 +00001979 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001980 iterator lower_bound(const key_type& __k)
1981 {return __tree_.lower_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001982 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001983 const_iterator lower_bound(const key_type& __k) const
1984 {return __tree_.lower_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001985#if _LIBCPP_STD_VER > 11
1986 template <typename _K2>
1987 _LIBCPP_INLINE_VISIBILITY
1988 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1989 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1990
1991 template <typename _K2>
1992 _LIBCPP_INLINE_VISIBILITY
1993 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1994 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1995#endif
1996
Howard Hinnant756c69b2010-09-22 16:48:34 +00001997 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001998 iterator upper_bound(const key_type& __k)
1999 {return __tree_.upper_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002000 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002001 const_iterator upper_bound(const key_type& __k) const
2002 {return __tree_.upper_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002003#if _LIBCPP_STD_VER > 11
2004 template <typename _K2>
2005 _LIBCPP_INLINE_VISIBILITY
2006 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2007 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
2008 template <typename _K2>
2009 _LIBCPP_INLINE_VISIBILITY
2010 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2011 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
2012#endif
2013
Howard Hinnant756c69b2010-09-22 16:48:34 +00002014 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002015 pair<iterator,iterator> equal_range(const key_type& __k)
2016 {return __tree_.__equal_range_multi(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002017 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002018 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
2019 {return __tree_.__equal_range_multi(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002020#if _LIBCPP_STD_VER > 11
2021 template <typename _K2>
2022 _LIBCPP_INLINE_VISIBILITY
2023 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
2024 equal_range(const _K2& __k) {return __tree_.__equal_range_multi(__k);}
2025 template <typename _K2>
2026 _LIBCPP_INLINE_VISIBILITY
2027 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
2028 equal_range(const _K2& __k) const {return __tree_.__equal_range_multi(__k);}
2029#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002030
2031private:
2032 typedef typename __base::__node __node;
2033 typedef typename __base::__node_allocator __node_allocator;
2034 typedef typename __base::__node_pointer __node_pointer;
Eric Fiseliera92b0732016-02-20 07:12:17 +00002035
Howard Hinnantc834c512011-11-29 18:15:50 +00002036 typedef __map_node_destructor<__node_allocator> _Dp;
2037 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002038
Howard Hinnant74279a52010-09-04 23:28:19 +00002039#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002040 __node_holder __construct_node();
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002041 template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00002042 __node_holder
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002043 __construct_node(_A0&& __a0);
Howard Hinnant74279a52010-09-04 23:28:19 +00002044#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002045 template <class _A0, class _A1, class ..._Args>
2046 __node_holder __construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args);
Howard Hinnant74279a52010-09-04 23:28:19 +00002047#endif // _LIBCPP_HAS_NO_VARIADICS
2048#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002049};
2050
Howard Hinnant74279a52010-09-04 23:28:19 +00002051#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002052
2053template <class _Key, class _Tp, class _Compare, class _Allocator>
2054multimap<_Key, _Tp, _Compare, _Allocator>::multimap(multimap&& __m, const allocator_type& __a)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002055 : __tree_(_VSTD::move(__m.__tree_), __a)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002056{
2057 if (__a != __m.get_allocator())
2058 {
2059 const_iterator __e = cend();
2060 while (!__m.empty())
2061 __tree_.__insert_multi(__e.__i_,
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002062 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002063 }
2064}
2065
2066template <class _Key, class _Tp, class _Compare, class _Allocator>
2067typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
2068multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node()
2069{
2070 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00002071 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00002072 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002073 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00002074 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002075 __h.get_deleter().__second_constructed = true;
2076 return __h;
2077}
2078
2079template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002080template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00002081typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantc51e1022010-05-11 19:42:16 +00002082multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0)
2083{
2084 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00002085 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002086 __node_traits::construct(__na, _VSTD::addressof(__h->__value_), _VSTD::forward<_A0>(__a0));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002087 __h.get_deleter().__first_constructed = true;
2088 __h.get_deleter().__second_constructed = true;
2089 return __h;
2090}
2091
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002092#ifndef _LIBCPP_HAS_NO_VARIADICS
2093
2094template <class _Key, class _Tp, class _Compare, class _Allocator>
2095template <class _A0, class _A1, class ..._Args>
2096typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
2097multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args)
2098{
2099 __node_allocator& __na = __tree_.__node_alloc();
2100 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
2101 __node_traits::construct(__na, _VSTD::addressof(__h->__value_),
2102 _VSTD::forward<_A0>(__a0), _VSTD::forward<_A1>(__a1),
2103 _VSTD::forward<_Args>(__args)...);
2104 __h.get_deleter().__first_constructed = true;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002105 __h.get_deleter().__second_constructed = true;
2106 return __h;
2107}
2108
Howard Hinnant74279a52010-09-04 23:28:19 +00002109#endif // _LIBCPP_HAS_NO_VARIADICS
2110#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002111
Howard Hinnant74279a52010-09-04 23:28:19 +00002112#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002113
2114template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002115template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00002116typename multimap<_Key, _Tp, _Compare, _Allocator>::iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002117multimap<_Key, _Tp, _Compare, _Allocator>::emplace(_Args&& ...__args)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002118{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002119 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00002120 iterator __r = __tree_.__node_insert_multi(__h.get());
2121 __h.release();
2122 return __r;
2123}
2124
2125template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002126template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00002127typename multimap<_Key, _Tp, _Compare, _Allocator>::iterator
2128multimap<_Key, _Tp, _Compare, _Allocator>::emplace_hint(const_iterator __p,
Howard Hinnantc51e1022010-05-11 19:42:16 +00002129 _Args&& ...__args)
2130{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002131 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00002132 iterator __r = __tree_.__node_insert_multi(__p.__i_, __h.get());
2133 __h.release();
2134 return __r;
2135}
2136
Howard Hinnant74279a52010-09-04 23:28:19 +00002137#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002138
2139template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002140inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002141bool
2142operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2143 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2144{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002145 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantc51e1022010-05-11 19:42:16 +00002146}
2147
2148template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002149inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002150bool
2151operator< (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2152 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2153{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002154 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantc51e1022010-05-11 19:42:16 +00002155}
2156
2157template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002158inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002159bool
2160operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2161 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2162{
2163 return !(__x == __y);
2164}
2165
2166template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002167inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002168bool
2169operator> (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2170 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2171{
2172 return __y < __x;
2173}
2174
2175template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002176inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002177bool
2178operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2179 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2180{
2181 return !(__x < __y);
2182}
2183
2184template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002185inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002186bool
2187operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2188 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2189{
2190 return !(__y < __x);
2191}
2192
2193template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002194inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002195void
2196swap(multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2197 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00002198 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantc51e1022010-05-11 19:42:16 +00002199{
2200 __x.swap(__y);
2201}
2202
2203_LIBCPP_END_NAMESPACE_STD
2204
2205#endif // _LIBCPP_MAP