blob: b58846b044a6039b922a9edf61e58efe36daaf94 [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;
1329 typedef typename __base::__node_const_pointer __node_const_pointer;
1330 typedef typename __base::__node_base_pointer __node_base_pointer;
1331 typedef typename __base::__node_base_const_pointer __node_base_const_pointer;
Howard Hinnantc834c512011-11-29 18:15:50 +00001332 typedef __map_node_destructor<__node_allocator> _Dp;
1333 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001334
Howard Hinnant74279a52010-09-04 23:28:19 +00001335#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001336 __node_holder __construct_node();
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001337 template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00001338 __node_holder __construct_node(_A0&& __a0);
1339 __node_holder __construct_node_with_key(key_type&& __k);
Howard Hinnant74279a52010-09-04 23:28:19 +00001340#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001341 template <class _A0, class _A1, class ..._Args>
1342 __node_holder __construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args);
Howard Hinnant74279a52010-09-04 23:28:19 +00001343#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001344#endif
Howard Hinnantac7e7482013-07-04 20:59:16 +00001345 __node_holder __construct_node_with_key(const key_type& __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001346
1347 __node_base_pointer&
1348 __find_equal_key(__node_base_pointer& __parent, const key_type& __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001349 __node_base_const_pointer
1350 __find_equal_key(__node_base_const_pointer& __parent, const key_type& __k) const;
1351};
1352
1353// Find place to insert if __k doesn't exist
1354// Set __parent to parent of null leaf
1355// Return reference to null leaf
1356// If __k exists, set parent to node of __k and return reference to node of __k
1357template <class _Key, class _Tp, class _Compare, class _Allocator>
1358typename map<_Key, _Tp, _Compare, _Allocator>::__node_base_pointer&
1359map<_Key, _Tp, _Compare, _Allocator>::__find_equal_key(__node_base_pointer& __parent,
1360 const key_type& __k)
1361{
1362 __node_pointer __nd = __tree_.__root();
1363 if (__nd != nullptr)
1364 {
1365 while (true)
1366 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001367 if (__tree_.value_comp().key_comp()(__k, __nd->__value_.__cc.first))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001368 {
1369 if (__nd->__left_ != nullptr)
1370 __nd = static_cast<__node_pointer>(__nd->__left_);
1371 else
1372 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001373 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001374 return __parent->__left_;
1375 }
1376 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001377 else if (__tree_.value_comp().key_comp()(__nd->__value_.__cc.first, __k))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001378 {
1379 if (__nd->__right_ != nullptr)
1380 __nd = static_cast<__node_pointer>(__nd->__right_);
1381 else
1382 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001383 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001384 return __parent->__right_;
1385 }
1386 }
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;
1391 }
1392 }
1393 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001394 __parent = static_cast<__node_base_pointer>(__tree_.__end_node());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001395 return __parent->__left_;
1396}
1397
Howard Hinnantc51e1022010-05-11 19:42:16 +00001398// Find __k
1399// Set __parent to parent of null leaf and
1400// return reference to null leaf iv __k does not exist.
1401// If __k exists, set parent to node of __k and return reference to node of __k
1402template <class _Key, class _Tp, class _Compare, class _Allocator>
1403typename map<_Key, _Tp, _Compare, _Allocator>::__node_base_const_pointer
1404map<_Key, _Tp, _Compare, _Allocator>::__find_equal_key(__node_base_const_pointer& __parent,
1405 const key_type& __k) const
1406{
1407 __node_const_pointer __nd = __tree_.__root();
1408 if (__nd != nullptr)
1409 {
1410 while (true)
1411 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001412 if (__tree_.value_comp().key_comp()(__k, __nd->__value_.__cc.first))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001413 {
1414 if (__nd->__left_ != nullptr)
1415 __nd = static_cast<__node_pointer>(__nd->__left_);
1416 else
1417 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001418 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001419 return const_cast<const __node_base_const_pointer&>(__parent->__left_);
1420 }
1421 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001422 else if (__tree_.value_comp().key_comp()(__nd->__value_.__cc.first, __k))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001423 {
1424 if (__nd->__right_ != nullptr)
1425 __nd = static_cast<__node_pointer>(__nd->__right_);
1426 else
1427 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001428 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001429 return const_cast<const __node_base_const_pointer&>(__parent->__right_);
1430 }
1431 }
1432 else
1433 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001434 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001435 return __parent;
1436 }
1437 }
1438 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001439 __parent = static_cast<__node_base_pointer>(__tree_.__end_node());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001440 return const_cast<const __node_base_const_pointer&>(__parent->__left_);
1441}
1442
Howard Hinnant74279a52010-09-04 23:28:19 +00001443#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001444
1445template <class _Key, class _Tp, class _Compare, class _Allocator>
1446map<_Key, _Tp, _Compare, _Allocator>::map(map&& __m, const allocator_type& __a)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001447 : __tree_(_VSTD::move(__m.__tree_), __a)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001448{
1449 if (__a != __m.get_allocator())
1450 {
1451 const_iterator __e = cend();
1452 while (!__m.empty())
1453 __tree_.__insert_unique(__e.__i_,
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001454 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001455 }
1456}
1457
1458template <class _Key, class _Tp, class _Compare, class _Allocator>
1459typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1460map<_Key, _Tp, _Compare, _Allocator>::__construct_node()
1461{
1462 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001463 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001464 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001465 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001466 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001467 __h.get_deleter().__second_constructed = true;
1468 return __h;
1469}
1470
1471template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001472template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00001473typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantc51e1022010-05-11 19:42:16 +00001474map<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0)
1475{
1476 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001477 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001478 __node_traits::construct(__na, _VSTD::addressof(__h->__value_), _VSTD::forward<_A0>(__a0));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001479 __h.get_deleter().__first_constructed = true;
1480 __h.get_deleter().__second_constructed = true;
1481 return __h;
1482}
1483
1484template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnantac7e7482013-07-04 20:59:16 +00001485typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1486map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(key_type&& __k)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001487{
1488 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001489 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantac7e7482013-07-04 20:59:16 +00001490 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), _VSTD::move(__k));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001491 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001492 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001493 __h.get_deleter().__second_constructed = true;
Howard Hinnanta31e9682013-08-22 18:29:50 +00001494 return __h;
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001495}
1496
1497#ifndef _LIBCPP_HAS_NO_VARIADICS
1498
1499template <class _Key, class _Tp, class _Compare, class _Allocator>
1500template <class _A0, class _A1, class ..._Args>
1501typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1502map<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args)
1503{
1504 __node_allocator& __na = __tree_.__node_alloc();
1505 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
1506 __node_traits::construct(__na, _VSTD::addressof(__h->__value_),
1507 _VSTD::forward<_A0>(__a0), _VSTD::forward<_A1>(__a1),
1508 _VSTD::forward<_Args>(__args)...);
1509 __h.get_deleter().__first_constructed = true;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001510 __h.get_deleter().__second_constructed = true;
1511 return __h;
1512}
1513
Howard Hinnant74279a52010-09-04 23:28:19 +00001514#endif // _LIBCPP_HAS_NO_VARIADICS
1515
Howard Hinnantac7e7482013-07-04 20:59:16 +00001516#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001517
1518template <class _Key, class _Tp, class _Compare, class _Allocator>
1519typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantac7e7482013-07-04 20:59:16 +00001520map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(const key_type& __k)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001521{
1522 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001523 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001524 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001525 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001526 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001527 __h.get_deleter().__second_constructed = true;
Dimitry Andric830fb602015-08-19 06:43:33 +00001528 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
Howard Hinnantc51e1022010-05-11 19:42:16 +00001529}
1530
Howard Hinnantc51e1022010-05-11 19:42:16 +00001531template <class _Key, class _Tp, class _Compare, class _Allocator>
1532_Tp&
1533map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1534{
1535 __node_base_pointer __parent;
1536 __node_base_pointer& __child = __find_equal_key(__parent, __k);
1537 __node_pointer __r = static_cast<__node_pointer>(__child);
1538 if (__child == nullptr)
1539 {
Howard Hinnantac7e7482013-07-04 20:59:16 +00001540 __node_holder __h = __construct_node_with_key(__k);
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001541 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001542 __r = __h.release();
1543 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001544 return __r->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001545}
1546
Howard Hinnant74279a52010-09-04 23:28:19 +00001547#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001548
1549template <class _Key, class _Tp, class _Compare, class _Allocator>
1550_Tp&
1551map<_Key, _Tp, _Compare, _Allocator>::operator[](key_type&& __k)
1552{
1553 __node_base_pointer __parent;
1554 __node_base_pointer& __child = __find_equal_key(__parent, __k);
1555 __node_pointer __r = static_cast<__node_pointer>(__child);
1556 if (__child == nullptr)
1557 {
Howard Hinnantac7e7482013-07-04 20:59:16 +00001558 __node_holder __h = __construct_node_with_key(_VSTD::move(__k));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001559 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001560 __r = __h.release();
1561 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001562 return __r->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001563}
1564
Howard Hinnant74279a52010-09-04 23:28:19 +00001565#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001566
1567template <class _Key, class _Tp, class _Compare, class _Allocator>
1568_Tp&
1569map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k)
1570{
1571 __node_base_pointer __parent;
1572 __node_base_pointer& __child = __find_equal_key(__parent, __k);
Howard Hinnant72f73582010-08-11 17:04:31 +00001573#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001574 if (__child == nullptr)
1575 throw out_of_range("map::at: key not found");
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001576#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001577 return static_cast<__node_pointer>(__child)->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001578}
1579
1580template <class _Key, class _Tp, class _Compare, class _Allocator>
1581const _Tp&
1582map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) const
1583{
1584 __node_base_const_pointer __parent;
1585 __node_base_const_pointer __child = __find_equal_key(__parent, __k);
Howard Hinnant72f73582010-08-11 17:04:31 +00001586#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001587 if (__child == nullptr)
1588 throw out_of_range("map::at: key not found");
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001589#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001590 return static_cast<__node_const_pointer>(__child)->__value_.__cc.second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001591}
1592
Howard Hinnant74279a52010-09-04 23:28:19 +00001593#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001594
1595template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001596template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001597pair<typename map<_Key, _Tp, _Compare, _Allocator>::iterator, bool>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001598map<_Key, _Tp, _Compare, _Allocator>::emplace(_Args&& ...__args)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001599{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001600 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001601 pair<iterator, bool> __r = __tree_.__node_insert_unique(__h.get());
1602 if (__r.second)
1603 __h.release();
1604 return __r;
1605}
1606
1607template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001608template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001609typename map<_Key, _Tp, _Compare, _Allocator>::iterator
1610map<_Key, _Tp, _Compare, _Allocator>::emplace_hint(const_iterator __p,
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001611 _Args&& ...__args)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001612{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001613 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001614 iterator __r = __tree_.__node_insert_unique(__p.__i_, __h.get());
1615 if (__r.__i_.__ptr_ == __h.get())
1616 __h.release();
1617 return __r;
1618}
1619
Howard Hinnant74279a52010-09-04 23:28:19 +00001620#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001621
1622template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001623inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001624bool
1625operator==(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1626 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1627{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001628 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001629}
1630
1631template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001632inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001633bool
1634operator< (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1635 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1636{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001637 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001638}
1639
1640template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001641inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001642bool
1643operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1644 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1645{
1646 return !(__x == __y);
1647}
1648
1649template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001650inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001651bool
1652operator> (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1653 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1654{
1655 return __y < __x;
1656}
1657
1658template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001659inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001660bool
1661operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1662 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1663{
1664 return !(__x < __y);
1665}
1666
1667template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001668inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001669bool
1670operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1671 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1672{
1673 return !(__y < __x);
1674}
1675
1676template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001677inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001678void
1679swap(map<_Key, _Tp, _Compare, _Allocator>& __x,
1680 map<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001681 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001682{
1683 __x.swap(__y);
1684}
1685
1686template <class _Key, class _Tp, class _Compare = less<_Key>,
1687 class _Allocator = allocator<pair<const _Key, _Tp> > >
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00001688class _LIBCPP_TYPE_VIS_ONLY multimap
Howard Hinnantc51e1022010-05-11 19:42:16 +00001689{
1690public:
1691 // types:
1692 typedef _Key key_type;
1693 typedef _Tp mapped_type;
1694 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001695 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001696 typedef _Compare key_compare;
1697 typedef _Allocator allocator_type;
1698 typedef value_type& reference;
1699 typedef const value_type& const_reference;
1700
Marshall Clow5128cf32015-11-26 01:24:04 +00001701 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
1702 "Allocator::value_type must be same type as value_type");
1703
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00001704 class _LIBCPP_TYPE_VIS_ONLY value_compare
Howard Hinnantc51e1022010-05-11 19:42:16 +00001705 : public binary_function<value_type, value_type, bool>
1706 {
1707 friend class multimap;
1708 protected:
1709 key_compare comp;
1710
Howard Hinnant756c69b2010-09-22 16:48:34 +00001711 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001712 value_compare(key_compare c) : comp(c) {}
1713 public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00001714 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001715 bool operator()(const value_type& __x, const value_type& __y) const
1716 {return comp(__x.first, __y.first);}
1717 };
1718
1719private:
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001720
Howard Hinnant89f8b792013-09-30 19:08:22 +00001721 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant90b91592013-07-05 18:06:00 +00001722 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow940e01c2015-04-07 05:21:38 +00001723 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
1724 __value_type>::type __allocator_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001725 typedef __tree<__value_type, __vc, __allocator_type> __base;
1726 typedef typename __base::__node_traits __node_traits;
1727 typedef allocator_traits<allocator_type> __alloc_traits;
1728
1729 __base __tree_;
1730
1731public:
1732 typedef typename __alloc_traits::pointer pointer;
1733 typedef typename __alloc_traits::const_pointer const_pointer;
1734 typedef typename __alloc_traits::size_type size_type;
1735 typedef typename __alloc_traits::difference_type difference_type;
1736 typedef __map_iterator<typename __base::iterator> iterator;
1737 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001738 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
1739 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001740
Howard Hinnant756c69b2010-09-22 16:48:34 +00001741 _LIBCPP_INLINE_VISIBILITY
Marshall Clow7086a5a2014-03-10 04:50:10 +00001742 multimap()
1743 _NOEXCEPT_(
1744 is_nothrow_default_constructible<allocator_type>::value &&
1745 is_nothrow_default_constructible<key_compare>::value &&
1746 is_nothrow_copy_constructible<key_compare>::value)
1747 : __tree_(__vc(key_compare())) {}
1748
1749 _LIBCPP_INLINE_VISIBILITY
1750 explicit multimap(const key_compare& __comp)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001751 _NOEXCEPT_(
1752 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001753 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001754 : __tree_(__vc(__comp)) {}
1755
Howard Hinnant756c69b2010-09-22 16:48:34 +00001756 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001757 explicit multimap(const key_compare& __comp, const allocator_type& __a)
1758 : __tree_(__vc(__comp), __a) {}
1759
1760 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001761 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001762 multimap(_InputIterator __f, _InputIterator __l,
1763 const key_compare& __comp = key_compare())
1764 : __tree_(__vc(__comp))
1765 {
1766 insert(__f, __l);
1767 }
1768
1769 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001770 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001771 multimap(_InputIterator __f, _InputIterator __l,
1772 const key_compare& __comp, const allocator_type& __a)
1773 : __tree_(__vc(__comp), __a)
1774 {
1775 insert(__f, __l);
1776 }
1777
Marshall Clow300abfb2013-09-11 01:15:47 +00001778#if _LIBCPP_STD_VER > 11
1779 template <class _InputIterator>
1780 _LIBCPP_INLINE_VISIBILITY
1781 multimap(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
1782 : multimap(__f, __l, key_compare(), __a) {}
1783#endif
1784
Howard Hinnant756c69b2010-09-22 16:48:34 +00001785 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001786 multimap(const multimap& __m)
1787 : __tree_(__m.__tree_.value_comp(),
1788 __alloc_traits::select_on_container_copy_construction(__m.__tree_.__alloc()))
1789 {
1790 insert(__m.begin(), __m.end());
1791 }
1792
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001793 _LIBCPP_INLINE_VISIBILITY
1794 multimap& operator=(const multimap& __m)
1795 {
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001796#if __cplusplus >= 201103L
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001797 __tree_ = __m.__tree_;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001798#else
Marshall Clowdb3cfcb2014-02-08 04:03:14 +00001799 if (this != &__m) {
1800 __tree_.clear();
1801 __tree_.value_comp() = __m.__tree_.value_comp();
1802 __tree_.__copy_assign_alloc(__m.__tree_);
1803 insert(__m.begin(), __m.end());
1804 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001805#endif
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001806 return *this;
1807 }
1808
Howard Hinnant74279a52010-09-04 23:28:19 +00001809#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001810
Howard Hinnant756c69b2010-09-22 16:48:34 +00001811 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001812 multimap(multimap&& __m)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001813 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001814 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001815 {
1816 }
1817
1818 multimap(multimap&& __m, const allocator_type& __a);
1819
Howard Hinnant756c69b2010-09-22 16:48:34 +00001820 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant33711792011-08-12 21:56:02 +00001821 multimap& operator=(multimap&& __m)
1822 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1823 {
1824 __tree_ = _VSTD::move(__m.__tree_);
1825 return *this;
1826 }
1827
1828#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
1829
1830#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1831
1832 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001833 multimap(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
1834 : __tree_(__vc(__comp))
1835 {
1836 insert(__il.begin(), __il.end());
1837 }
1838
Howard Hinnant756c69b2010-09-22 16:48:34 +00001839 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001840 multimap(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
1841 : __tree_(__vc(__comp), __a)
1842 {
1843 insert(__il.begin(), __il.end());
1844 }
1845
Marshall Clow300abfb2013-09-11 01:15:47 +00001846#if _LIBCPP_STD_VER > 11
1847 _LIBCPP_INLINE_VISIBILITY
1848 multimap(initializer_list<value_type> __il, const allocator_type& __a)
1849 : multimap(__il, key_compare(), __a) {}
1850#endif
1851
Howard Hinnant756c69b2010-09-22 16:48:34 +00001852 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001853 multimap& operator=(initializer_list<value_type> __il)
1854 {
1855 __tree_.__assign_multi(__il.begin(), __il.end());
1856 return *this;
1857 }
Howard Hinnant33711792011-08-12 21:56:02 +00001858
1859#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001860
Howard Hinnant756c69b2010-09-22 16:48:34 +00001861 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001862 explicit multimap(const allocator_type& __a)
1863 : __tree_(__a)
1864 {
1865 }
1866
Howard Hinnant756c69b2010-09-22 16:48:34 +00001867 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001868 multimap(const multimap& __m, const allocator_type& __a)
1869 : __tree_(__m.__tree_.value_comp(), __a)
1870 {
1871 insert(__m.begin(), __m.end());
1872 }
1873
Howard Hinnant756c69b2010-09-22 16:48:34 +00001874 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001875 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001876 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001877 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001878 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001879 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001880 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001881 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001882
Howard Hinnant756c69b2010-09-22 16:48:34 +00001883 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001884 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001885 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001886 const_reverse_iterator rbegin() const _NOEXCEPT
1887 {return const_reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001888 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001889 reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001890 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001891 const_reverse_iterator rend() const _NOEXCEPT
1892 {return const_reverse_iterator(begin());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001893
Howard Hinnant756c69b2010-09-22 16:48:34 +00001894 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001895 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001896 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001897 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001898 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001899 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001900 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001901 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001902
Howard Hinnant756c69b2010-09-22 16:48:34 +00001903 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001904 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001905 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001906 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001907 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001908 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001909
Howard Hinnant756c69b2010-09-22 16:48:34 +00001910 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001911 allocator_type get_allocator() const _NOEXCEPT {return __tree_.__alloc();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001912 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001913 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001914 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001915 value_compare value_comp() const
1916 {return value_compare(__tree_.value_comp().key_comp());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001917
Howard Hinnant74279a52010-09-04 23:28:19 +00001918#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant74279a52010-09-04 23:28:19 +00001919#ifndef _LIBCPP_HAS_NO_VARIADICS
1920
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001921 template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001922 iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001923 emplace(_Args&& ...__args);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001924
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001925 template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001926 iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001927 emplace_hint(const_iterator __p, _Args&& ...__args);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001928
Howard Hinnant74279a52010-09-04 23:28:19 +00001929#endif // _LIBCPP_HAS_NO_VARIADICS
1930
Howard Hinnantc834c512011-11-29 18:15:50 +00001931 template <class _Pp,
1932 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001933 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001934 iterator insert(_Pp&& __p)
1935 {return __tree_.__insert_multi(_VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001936
Howard Hinnantc834c512011-11-29 18:15:50 +00001937 template <class _Pp,
1938 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001939 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001940 iterator insert(const_iterator __pos, _Pp&& __p)
1941 {return __tree_.__insert_multi(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001942
Howard Hinnant74279a52010-09-04 23:28:19 +00001943#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00001944
Howard Hinnant756c69b2010-09-22 16:48:34 +00001945 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001946 iterator insert(const value_type& __v) {return __tree_.__insert_multi(__v);}
1947
Howard Hinnant756c69b2010-09-22 16:48:34 +00001948 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001949 iterator insert(const_iterator __p, const value_type& __v)
1950 {return __tree_.__insert_multi(__p.__i_, __v);}
1951
Marshall Clowd430d022016-01-05 19:32:41 +00001952#if _LIBCPP_STD_VER > 14 && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1953 _LIBCPP_INLINE_VISIBILITY
1954 iterator insert( value_type&& __v) {return __tree_.__insert_multi(_VSTD::forward<value_type>(__v));}
1955
1956 _LIBCPP_INLINE_VISIBILITY
1957 iterator insert(const_iterator __p, value_type&& __v)
1958 {return __tree_.__insert_multi(__p.__i_, _VSTD::forward<value_type>(__v));}
1959#endif
1960
Howard Hinnantc51e1022010-05-11 19:42:16 +00001961 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001962 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001963 void insert(_InputIterator __f, _InputIterator __l)
1964 {
1965 for (const_iterator __e = cend(); __f != __l; ++__f)
1966 __tree_.__insert_multi(__e.__i_, *__f);
1967 }
1968
Howard Hinnant33711792011-08-12 21:56:02 +00001969#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1970
Howard Hinnant756c69b2010-09-22 16:48:34 +00001971 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001972 void insert(initializer_list<value_type> __il)
1973 {insert(__il.begin(), __il.end());}
1974
Howard Hinnant33711792011-08-12 21:56:02 +00001975#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1976
Howard Hinnant756c69b2010-09-22 16:48:34 +00001977 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001978 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001979 _LIBCPP_INLINE_VISIBILITY
Marshall Clow22ea5b82015-05-10 13:35:00 +00001980 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1981 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001982 size_type erase(const key_type& __k) {return __tree_.__erase_multi(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001983 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001984 iterator erase(const_iterator __f, const_iterator __l)
1985 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001986 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001987 void clear() {__tree_.clear();}
1988
Howard Hinnant756c69b2010-09-22 16:48:34 +00001989 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001990 void swap(multimap& __m)
1991 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1992 {__tree_.swap(__m.__tree_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001993
Howard Hinnant756c69b2010-09-22 16:48:34 +00001994 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001995 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001996 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001997 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001998#if _LIBCPP_STD_VER > 11
1999 template <typename _K2>
2000 _LIBCPP_INLINE_VISIBILITY
2001 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2002 find(const _K2& __k) {return __tree_.find(__k);}
2003 template <typename _K2>
2004 _LIBCPP_INLINE_VISIBILITY
2005 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2006 find(const _K2& __k) const {return __tree_.find(__k);}
2007#endif
2008
Howard Hinnant756c69b2010-09-22 16:48:34 +00002009 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002010 size_type count(const key_type& __k) const
2011 {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00002012#if _LIBCPP_STD_VER > 11
2013 template <typename _K2>
2014 _LIBCPP_INLINE_VISIBILITY
2015 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Marshall Clow141e47b2015-06-30 18:15:41 +00002016 count(const _K2& __k) const {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00002017#endif
Howard Hinnant756c69b2010-09-22 16:48:34 +00002018 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002019 iterator lower_bound(const key_type& __k)
2020 {return __tree_.lower_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002021 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002022 const_iterator lower_bound(const key_type& __k) const
2023 {return __tree_.lower_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002024#if _LIBCPP_STD_VER > 11
2025 template <typename _K2>
2026 _LIBCPP_INLINE_VISIBILITY
2027 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2028 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
2029
2030 template <typename _K2>
2031 _LIBCPP_INLINE_VISIBILITY
2032 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2033 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
2034#endif
2035
Howard Hinnant756c69b2010-09-22 16:48:34 +00002036 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002037 iterator upper_bound(const key_type& __k)
2038 {return __tree_.upper_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002039 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002040 const_iterator upper_bound(const key_type& __k) const
2041 {return __tree_.upper_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002042#if _LIBCPP_STD_VER > 11
2043 template <typename _K2>
2044 _LIBCPP_INLINE_VISIBILITY
2045 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2046 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
2047 template <typename _K2>
2048 _LIBCPP_INLINE_VISIBILITY
2049 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2050 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
2051#endif
2052
Howard Hinnant756c69b2010-09-22 16:48:34 +00002053 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002054 pair<iterator,iterator> equal_range(const key_type& __k)
2055 {return __tree_.__equal_range_multi(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002056 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002057 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
2058 {return __tree_.__equal_range_multi(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002059#if _LIBCPP_STD_VER > 11
2060 template <typename _K2>
2061 _LIBCPP_INLINE_VISIBILITY
2062 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
2063 equal_range(const _K2& __k) {return __tree_.__equal_range_multi(__k);}
2064 template <typename _K2>
2065 _LIBCPP_INLINE_VISIBILITY
2066 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
2067 equal_range(const _K2& __k) const {return __tree_.__equal_range_multi(__k);}
2068#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002069
2070private:
2071 typedef typename __base::__node __node;
2072 typedef typename __base::__node_allocator __node_allocator;
2073 typedef typename __base::__node_pointer __node_pointer;
2074 typedef typename __base::__node_const_pointer __node_const_pointer;
Howard Hinnantc834c512011-11-29 18:15:50 +00002075 typedef __map_node_destructor<__node_allocator> _Dp;
2076 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002077
Howard Hinnant74279a52010-09-04 23:28:19 +00002078#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002079 __node_holder __construct_node();
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002080 template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00002081 __node_holder
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002082 __construct_node(_A0&& __a0);
Howard Hinnant74279a52010-09-04 23:28:19 +00002083#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002084 template <class _A0, class _A1, class ..._Args>
2085 __node_holder __construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args);
Howard Hinnant74279a52010-09-04 23:28:19 +00002086#endif // _LIBCPP_HAS_NO_VARIADICS
2087#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002088};
2089
Howard Hinnant74279a52010-09-04 23:28:19 +00002090#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002091
2092template <class _Key, class _Tp, class _Compare, class _Allocator>
2093multimap<_Key, _Tp, _Compare, _Allocator>::multimap(multimap&& __m, const allocator_type& __a)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002094 : __tree_(_VSTD::move(__m.__tree_), __a)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002095{
2096 if (__a != __m.get_allocator())
2097 {
2098 const_iterator __e = cend();
2099 while (!__m.empty())
2100 __tree_.__insert_multi(__e.__i_,
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002101 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002102 }
2103}
2104
2105template <class _Key, class _Tp, class _Compare, class _Allocator>
2106typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
2107multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node()
2108{
2109 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00002110 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant2d0046b2013-06-19 21:29:40 +00002111 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002112 __h.get_deleter().__first_constructed = true;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00002113 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002114 __h.get_deleter().__second_constructed = true;
2115 return __h;
2116}
2117
2118template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002119template <class _A0>
Howard Hinnantac7e7482013-07-04 20:59:16 +00002120typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantc51e1022010-05-11 19:42:16 +00002121multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0)
2122{
2123 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00002124 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002125 __node_traits::construct(__na, _VSTD::addressof(__h->__value_), _VSTD::forward<_A0>(__a0));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002126 __h.get_deleter().__first_constructed = true;
2127 __h.get_deleter().__second_constructed = true;
2128 return __h;
2129}
2130
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002131#ifndef _LIBCPP_HAS_NO_VARIADICS
2132
2133template <class _Key, class _Tp, class _Compare, class _Allocator>
2134template <class _A0, class _A1, class ..._Args>
2135typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
2136multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args)
2137{
2138 __node_allocator& __na = __tree_.__node_alloc();
2139 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
2140 __node_traits::construct(__na, _VSTD::addressof(__h->__value_),
2141 _VSTD::forward<_A0>(__a0), _VSTD::forward<_A1>(__a1),
2142 _VSTD::forward<_Args>(__args)...);
2143 __h.get_deleter().__first_constructed = true;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002144 __h.get_deleter().__second_constructed = true;
2145 return __h;
2146}
2147
Howard Hinnant74279a52010-09-04 23:28:19 +00002148#endif // _LIBCPP_HAS_NO_VARIADICS
2149#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00002150
Howard Hinnant74279a52010-09-04 23:28:19 +00002151#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002152
2153template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002154template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00002155typename multimap<_Key, _Tp, _Compare, _Allocator>::iterator
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002156multimap<_Key, _Tp, _Compare, _Allocator>::emplace(_Args&& ...__args)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002157{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002158 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00002159 iterator __r = __tree_.__node_insert_multi(__h.get());
2160 __h.release();
2161 return __r;
2162}
2163
2164template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002165template <class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00002166typename multimap<_Key, _Tp, _Compare, _Allocator>::iterator
2167multimap<_Key, _Tp, _Compare, _Allocator>::emplace_hint(const_iterator __p,
Howard Hinnantc51e1022010-05-11 19:42:16 +00002168 _Args&& ...__args)
2169{
Howard Hinnant29eb9b82012-05-25 22:04:21 +00002170 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00002171 iterator __r = __tree_.__node_insert_multi(__p.__i_, __h.get());
2172 __h.release();
2173 return __r;
2174}
2175
Howard Hinnant74279a52010-09-04 23:28:19 +00002176#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002177
2178template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002179inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002180bool
2181operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2182 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2183{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002184 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantc51e1022010-05-11 19:42:16 +00002185}
2186
2187template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002188inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002189bool
2190operator< (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2191 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2192{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002193 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantc51e1022010-05-11 19:42:16 +00002194}
2195
2196template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002197inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002198bool
2199operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2200 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2201{
2202 return !(__x == __y);
2203}
2204
2205template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002206inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002207bool
2208operator> (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2209 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2210{
2211 return __y < __x;
2212}
2213
2214template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002215inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002216bool
2217operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2218 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2219{
2220 return !(__x < __y);
2221}
2222
2223template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002224inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002225bool
2226operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2227 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2228{
2229 return !(__y < __x);
2230}
2231
2232template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002233inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002234void
2235swap(multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2236 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00002237 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantc51e1022010-05-11 19:42:16 +00002238{
2239 __x.swap(__y);
2240}
2241
2242_LIBCPP_END_NAMESPACE_STD
2243
2244#endif // _LIBCPP_MAP