blob: 71f18693f6d1571c239fc83717d0a75601362d9c [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:161// -*- C++ -*-
2//===----------------------------- map ------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:014// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:165//
Howard Hinnantb64f8b02010-11-16 22:09:026// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:168//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_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 Hinnant7686add2011-06-04 14:31:5757 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 Hinnantbc8d3f92010-05-11 19:42:1662 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 Hinnant7686add2011-06-04 14:31:5771 map(map&& m)
72 noexcept(
73 is_nothrow_move_constructible<allocator_type>::value &&
74 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:1675 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 Clow49d596d2013-09-11 01:15:4780 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 Hinnantbc8d3f92010-05-11 19:42:1686
87 map& operator=(const map& m);
Howard Hinnant7686add2011-06-04 14:31:5788 map& operator=(map&& m)
89 noexcept(
90 allocator_type::propagate_on_container_move_assignment::value &&
91 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantb2e2a8f2011-06-04 15:22:3492 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:1693 map& operator=(initializer_list<value_type> il);
94
95 // iterators:
Howard Hinnantb2e2a8f2011-06-04 15:22:3496 iterator begin() noexcept;
97 const_iterator begin() const noexcept;
98 iterator end() noexcept;
99 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16100
Howard Hinnantb2e2a8f2011-06-04 15:22:34101 reverse_iterator rbegin() noexcept;
102 const_reverse_iterator rbegin() const noexcept;
103 reverse_iterator rend() noexcept;
104 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16105
Howard Hinnantb2e2a8f2011-06-04 15:22:34106 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 Hinnantbc8d3f92010-05-11 19:42:16110
111 // capacity:
Howard Hinnantb2e2a8f2011-06-04 15:22:34112 bool empty() const noexcept;
113 size_type size() const noexcept;
114 size_type max_size() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16115
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 Clow3426a862016-01-05 19:32:41129 pair<iterator, bool> insert( value_type&& v); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16130 template <class P>
131 pair<iterator, bool> insert(P&& p);
132 iterator insert(const_iterator position, const value_type& v);
Marshall Clow3426a862016-01-05 19:32:41133 iterator insert(const_iterator position, value_type&& v); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16134 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 Clowf3a1a182015-07-07 03:37:33140 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 Hinnantbc8d3f92010-05-11 19:42:16157 iterator erase(const_iterator position);
Marshall Clow488025c2015-05-10 13:35:00158 iterator erase(iterator position); // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16159 size_type erase(const key_type& k);
160 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantb2e2a8f2011-06-04 15:22:34161 void clear() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16162
Howard Hinnant7686add2011-06-04 14:31:57163 void swap(map& m)
Marshall Clow7d914d12015-07-13 20:04:56164 noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
Eric Fiselier8f1e73d2016-04-21 23:38:59165 is_nothrow_swappable<key_compare>::value); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16166
167 // observers:
Howard Hinnantb2e2a8f2011-06-04 15:22:34168 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16169 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 Clow5cfc6ab2013-08-13 22:18:47175 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 Clow4de32042014-08-24 23:54:16180 size_type count(const K& x) const; // C++14
Marshall Clow5cfc6ab2013-08-13 22:18:47181
Howard Hinnantbc8d3f92010-05-11 19:42:16182 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 Clow5cfc6ab2013-08-13 22:18:47185 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 Hinnantbc8d3f92010-05-11 19:42:16190 iterator upper_bound(const key_type& k);
191 const_iterator upper_bound(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47192 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 Hinnantbc8d3f92010-05-11 19:42:16197 pair<iterator,iterator> equal_range(const key_type& k);
198 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47199 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 Hinnantbc8d3f92010-05-11 19:42:16203};
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 Hinnant7686add2011-06-04 14:31:57238swap(map<Key, T, Compare, Allocator>& x, map<Key, T, Compare, Allocator>& y)
239 noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16240
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 Hinnant7686add2011-06-04 14:31:57276 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 Hinnantbc8d3f92010-05-11 19:42:16282 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 Hinnant7686add2011-06-04 14:31:57289 multimap(multimap&& m)
290 noexcept(
291 is_nothrow_move_constructible<allocator_type>::value &&
292 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16293 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 Clow49d596d2013-09-11 01:15:47299 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 Hinnantbc8d3f92010-05-11 19:42:16304 ~multimap();
305
306 multimap& operator=(const multimap& m);
Howard Hinnant7686add2011-06-04 14:31:57307 multimap& operator=(multimap&& m)
308 noexcept(
309 allocator_type::propagate_on_container_move_assignment::value &&
310 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantb2e2a8f2011-06-04 15:22:34311 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16312 multimap& operator=(initializer_list<value_type> il);
313
314 // iterators:
Howard Hinnantb2e2a8f2011-06-04 15:22:34315 iterator begin() noexcept;
316 const_iterator begin() const noexcept;
317 iterator end() noexcept;
318 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16319
Howard Hinnantb2e2a8f2011-06-04 15:22:34320 reverse_iterator rbegin() noexcept;
321 const_reverse_iterator rbegin() const noexcept;
322 reverse_iterator rend() noexcept;
323 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16324
Howard Hinnantb2e2a8f2011-06-04 15:22:34325 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 Hinnantbc8d3f92010-05-11 19:42:16329
330 // capacity:
Howard Hinnantb2e2a8f2011-06-04 15:22:34331 bool empty() const noexcept;
332 size_type size() const noexcept;
333 size_type max_size() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16334
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 Clow3426a862016-01-05 19:32:41341 iterator insert( value_type&& v); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16342 template <class P>
343 iterator insert(P&& p);
344 iterator insert(const_iterator position, const value_type& v);
Marshall Clow3426a862016-01-05 19:32:41345 iterator insert(const_iterator position, value_type&& v); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16346 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 Clow488025c2015-05-10 13:35:00353 iterator erase(iterator position); // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16354 size_type erase(const key_type& k);
355 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantb2e2a8f2011-06-04 15:22:34356 void clear() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16357
Howard Hinnant7686add2011-06-04 14:31:57358 void swap(multimap& m)
Marshall Clow7d914d12015-07-13 20:04:56359 noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
Eric Fiselier8f1e73d2016-04-21 23:38:59360 is_nothrow_swappable<key_compare>::value); // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16361
362 // observers:
Howard Hinnantb2e2a8f2011-06-04 15:22:34363 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16364 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 Clow5cfc6ab2013-08-13 22:18:47370 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 Clow4de32042014-08-24 23:54:16375 size_type count(const K& x) const; // C++14
Marshall Clow5cfc6ab2013-08-13 22:18:47376
Howard Hinnantbc8d3f92010-05-11 19:42:16377 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 Clow5cfc6ab2013-08-13 22:18:47380 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 Hinnantbc8d3f92010-05-11 19:42:16385 iterator upper_bound(const key_type& k);
386 const_iterator upper_bound(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47387 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 Hinnantbc8d3f92010-05-11 19:42:16392 pair<iterator,iterator> equal_range(const key_type& k);
393 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47394 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 Hinnantbc8d3f92010-05-11 19:42:16398};
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 Hinnant7686add2011-06-04 14:31:57434 multimap<Key, T, Compare, Allocator>& y)
435 noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16436
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 Fiselier3a0e4302015-06-13 07:08:02448#include <type_traits>
Howard Hinnantbc8d3f92010-05-11 19:42:16449
Howard Hinnant08e17472011-10-17 20:05:10450#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16451#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10452#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16453
454_LIBCPP_BEGIN_NAMESPACE_STD
455
Eric Fiselierebaf7da2017-01-13 22:02:08456template <class _Key, class _CP, class _Compare, bool _IsSmall>
Howard Hinnantbc8d3f92010-05-11 19:42:16457class __map_value_compare
458 : private _Compare
459{
Howard Hinnantbc8d3f92010-05-11 19:42:16460public:
Howard Hinnant82894812010-09-22 16:48:34461 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57462 __map_value_compare()
463 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
464 : _Compare() {}
Howard Hinnant82894812010-09-22 16:48:34465 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57466 __map_value_compare(_Compare c)
467 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
468 : _Compare(c) {}
Howard Hinnant82894812010-09-22 16:48:34469 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57470 const _Compare& key_comp() const _NOEXCEPT {return *this;}
Howard Hinnant82894812010-09-22 16:48:34471 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16472 bool operator()(const _CP& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00473 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);}
Howard Hinnant82894812010-09-22 16:48:34474 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16475 bool operator()(const _CP& __x, const _Key& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00476 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);}
Howard Hinnant82894812010-09-22 16:48:34477 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16478 bool operator()(const _Key& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00479 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);}
Marshall Clow7d914d12015-07-13 20:04:56480 void swap(__map_value_compare&__y)
481 _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value)
482 {
Eric Fiselier161ccc12017-04-13 00:34:24483 using _VSTD::swap;
484 swap(static_cast<_Compare&>(*this), static_cast<_Compare&>(__y));
Marshall Clow7d914d12015-07-13 20:04:56485 }
Marshall Clow5cfc6ab2013-08-13 22:18:47486
487#if _LIBCPP_STD_VER > 11
488 template <typename _K2>
489 _LIBCPP_INLINE_VISIBILITY
490 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
491 operator () ( const _K2& __x, const _CP& __y ) const
492 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);}
493
494 template <typename _K2>
495 _LIBCPP_INLINE_VISIBILITY
496 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
497 operator () (const _CP& __x, const _K2& __y) const
498 {return static_cast<const _Compare&>(*this) (__x.__cc.first, __y);}
499#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16500};
501
Howard Hinnant9b128e02013-07-05 18:06:00502template <class _Key, class _CP, class _Compare>
503class __map_value_compare<_Key, _CP, _Compare, false>
Howard Hinnantbc8d3f92010-05-11 19:42:16504{
505 _Compare comp;
506
Howard Hinnantbc8d3f92010-05-11 19:42:16507public:
Howard Hinnant82894812010-09-22 16:48:34508 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57509 __map_value_compare()
510 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
511 : comp() {}
Howard Hinnant82894812010-09-22 16:48:34512 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57513 __map_value_compare(_Compare c)
514 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
515 : comp(c) {}
Howard Hinnant82894812010-09-22 16:48:34516 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57517 const _Compare& key_comp() const _NOEXCEPT {return comp;}
Howard Hinnantbc8d3f92010-05-11 19:42:16518
Howard Hinnant82894812010-09-22 16:48:34519 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16520 bool operator()(const _CP& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00521 {return comp(__x.__cc.first, __y.__cc.first);}
Howard Hinnant82894812010-09-22 16:48:34522 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16523 bool operator()(const _CP& __x, const _Key& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00524 {return comp(__x.__cc.first, __y);}
Howard Hinnant82894812010-09-22 16:48:34525 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16526 bool operator()(const _Key& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00527 {return comp(__x, __y.__cc.first);}
Marshall Clow7d914d12015-07-13 20:04:56528 void swap(__map_value_compare&__y)
529 _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value)
530 {
531 using _VSTD::swap;
532 swap(comp, __y.comp);
533 }
Eric Fiselier856712b2017-01-05 06:06:18534
Marshall Clow5cfc6ab2013-08-13 22:18:47535#if _LIBCPP_STD_VER > 11
536 template <typename _K2>
537 _LIBCPP_INLINE_VISIBILITY
538 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
539 operator () ( const _K2& __x, const _CP& __y ) const
540 {return comp (__x, __y.__cc.first);}
541
542 template <typename _K2>
543 _LIBCPP_INLINE_VISIBILITY
544 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
545 operator () (const _CP& __x, const _K2& __y) const
546 {return comp (__x.__cc.first, __y);}
547#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16548};
549
Marshall Clow7d914d12015-07-13 20:04:56550template <class _Key, class _CP, class _Compare, bool __b>
551inline _LIBCPP_INLINE_VISIBILITY
552void
553swap(__map_value_compare<_Key, _CP, _Compare, __b>& __x,
554 __map_value_compare<_Key, _CP, _Compare, __b>& __y)
555 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
556{
557 __x.swap(__y);
558}
559
Howard Hinnantbc8d3f92010-05-11 19:42:16560template <class _Allocator>
561class __map_node_destructor
562{
563 typedef _Allocator allocator_type;
564 typedef allocator_traits<allocator_type> __alloc_traits;
Eric Fiselier55263482016-02-20 05:28:30565
Howard Hinnantbc8d3f92010-05-11 19:42:16566public:
567 typedef typename __alloc_traits::pointer pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16568
Eric Fiselier55263482016-02-20 05:28:30569private:
Howard Hinnantbc8d3f92010-05-11 19:42:16570 allocator_type& __na_;
571
572 __map_node_destructor& operator=(const __map_node_destructor&);
573
574public:
575 bool __first_constructed;
576 bool __second_constructed;
577
Howard Hinnant82894812010-09-22 16:48:34578 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57579 explicit __map_node_destructor(allocator_type& __na) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16580 : __na_(__na),
581 __first_constructed(false),
582 __second_constructed(false)
583 {}
584
Eric Fiselierce924dc2017-04-18 21:08:06585#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant82894812010-09-22 16:48:34586 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57587 __map_node_destructor(__tree_node_destructor<allocator_type>&& __x) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16588 : __na_(__x.__na_),
589 __first_constructed(__x.__value_constructed),
590 __second_constructed(__x.__value_constructed)
591 {
592 __x.__value_constructed = false;
593 }
Eric Fiselierce924dc2017-04-18 21:08:06594#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16595
Howard Hinnant82894812010-09-22 16:48:34596 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57597 void operator()(pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16598 {
599 if (__second_constructed)
Howard Hinnant70342b92013-06-19 21:29:40600 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16601 if (__first_constructed)
Howard Hinnant70342b92013-06-19 21:29:40602 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.first));
Howard Hinnantbc8d3f92010-05-11 19:42:16603 if (__p)
604 __alloc_traits::deallocate(__na_, __p, 1);
605 }
606};
607
Howard Hinnant2b1b2d42011-06-14 19:58:17608template <class _Key, class _Tp, class _Compare, class _Allocator>
609 class map;
610template <class _Key, class _Tp, class _Compare, class _Allocator>
611 class multimap;
612template <class _TreeIterator> class __map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16613
Eric Fiselier55263482016-02-20 05:28:30614#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantff7546e2013-09-30 19:08:22615
616template <class _Key, class _Tp>
617union __value_type
618{
619 typedef _Key key_type;
620 typedef _Tp mapped_type;
621 typedef pair<const key_type, mapped_type> value_type;
622 typedef pair<key_type, mapped_type> __nc_value_type;
623
624 value_type __cc;
625 __nc_value_type __nc;
626
Howard Hinnantff7546e2013-09-30 19:08:22627 _LIBCPP_INLINE_VISIBILITY
628 __value_type& operator=(const __value_type& __v)
629 {__nc = __v.__cc; return *this;}
630
631 _LIBCPP_INLINE_VISIBILITY
632 __value_type& operator=(__value_type&& __v)
Eric Fiselierdb215062016-03-31 02:15:15633 {__nc = _VSTD::move(__v.__nc); return *this;}
Howard Hinnantff7546e2013-09-30 19:08:22634
Eric Fiselierdb215062016-03-31 02:15:15635 template <class _ValueTp,
636 class = typename enable_if<
637 __is_same_uncvref<_ValueTp, value_type>::value
638 >::type
639 >
Howard Hinnantff7546e2013-09-30 19:08:22640 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierdb215062016-03-31 02:15:15641 __value_type& operator=(_ValueTp&& __v) {
642 __nc = _VSTD::forward<_ValueTp>(__v); return *this;
643 }
644
645private:
646 __value_type() _LIBCPP_EQUAL_DELETE;
647 ~__value_type() _LIBCPP_EQUAL_DELETE;
648 __value_type(const __value_type& __v) _LIBCPP_EQUAL_DELETE;
649 __value_type(__value_type&& __v) _LIBCPP_EQUAL_DELETE;
Howard Hinnantff7546e2013-09-30 19:08:22650};
651
652#else
653
654template <class _Key, class _Tp>
655struct __value_type
656{
657 typedef _Key key_type;
658 typedef _Tp mapped_type;
659 typedef pair<const key_type, mapped_type> value_type;
660
661 value_type __cc;
662
Eric Fiselierdb215062016-03-31 02:15:15663private:
664 __value_type();
665 __value_type(__value_type const&);
666 __value_type& operator=(__value_type const&);
667 ~__value_type();
Howard Hinnantff7546e2013-09-30 19:08:22668};
669
Eric Fiselierce924dc2017-04-18 21:08:06670#endif // _LIBCPP_CXX03_LANG
Howard Hinnantff7546e2013-09-30 19:08:22671
Eric Fiselier9c8e6632015-03-03 20:10:01672template <class _Tp>
673struct __extract_key_value_types;
674
675template <class _Key, class _Tp>
676struct __extract_key_value_types<__value_type<_Key, _Tp> >
677{
678 typedef _Key const __key_type;
679 typedef _Tp __mapped_type;
680};
681
Howard Hinnantbc8d3f92010-05-11 19:42:16682template <class _TreeIterator>
Eric Fiselierc3589a82017-01-04 23:56:00683class _LIBCPP_TEMPLATE_VIS __map_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16684{
Eric Fiselier55263482016-02-20 05:28:30685 typedef typename _TreeIterator::_NodeTypes _NodeTypes;
686 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
687
Howard Hinnantbc8d3f92010-05-11 19:42:16688 _TreeIterator __i_;
689
Howard Hinnantbc8d3f92010-05-11 19:42:16690public:
691 typedef bidirectional_iterator_tag iterator_category;
Eric Fiselier55263482016-02-20 05:28:30692 typedef typename _NodeTypes::__map_value_type value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16693 typedef typename _TreeIterator::difference_type difference_type;
694 typedef value_type& reference;
Eric Fiselier55263482016-02-20 05:28:30695 typedef typename _NodeTypes::__map_value_type_pointer pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16696
Howard Hinnant82894812010-09-22 16:48:34697 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57698 __map_iterator() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16699
Howard Hinnant82894812010-09-22 16:48:34700 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57701 __map_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16702
Howard Hinnant82894812010-09-22 16:48:34703 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40704 reference operator*() const {return __i_->__cc;}
Howard Hinnant82894812010-09-22 16:48:34705 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40706 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__cc);}
Howard Hinnantbc8d3f92010-05-11 19:42:16707
Howard Hinnant82894812010-09-22 16:48:34708 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16709 __map_iterator& operator++() {++__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34710 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16711 __map_iterator operator++(int)
712 {
713 __map_iterator __t(*this);
714 ++(*this);
715 return __t;
716 }
717
Howard Hinnant82894812010-09-22 16:48:34718 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16719 __map_iterator& operator--() {--__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34720 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16721 __map_iterator operator--(int)
722 {
723 __map_iterator __t(*this);
724 --(*this);
725 return __t;
726 }
727
Howard Hinnant82894812010-09-22 16:48:34728 friend _LIBCPP_INLINE_VISIBILITY
729 bool operator==(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16730 {return __x.__i_ == __y.__i_;}
Eric Fiselier856712b2017-01-05 06:06:18731 friend
Howard Hinnant82894812010-09-22 16:48:34732 _LIBCPP_INLINE_VISIBILITY
733 bool operator!=(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16734 {return __x.__i_ != __y.__i_;}
735
Eric Fiselierc3589a82017-01-04 23:56:00736 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS map;
737 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS multimap;
738 template <class> friend class _LIBCPP_TEMPLATE_VIS __map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16739};
740
741template <class _TreeIterator>
Eric Fiselierc3589a82017-01-04 23:56:00742class _LIBCPP_TEMPLATE_VIS __map_const_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16743{
Eric Fiselier55263482016-02-20 05:28:30744 typedef typename _TreeIterator::_NodeTypes _NodeTypes;
745 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
746
Howard Hinnantbc8d3f92010-05-11 19:42:16747 _TreeIterator __i_;
748
Howard Hinnantbc8d3f92010-05-11 19:42:16749public:
750 typedef bidirectional_iterator_tag iterator_category;
Eric Fiselier55263482016-02-20 05:28:30751 typedef typename _NodeTypes::__map_value_type value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16752 typedef typename _TreeIterator::difference_type difference_type;
753 typedef const value_type& reference;
Eric Fiselier55263482016-02-20 05:28:30754 typedef typename _NodeTypes::__const_map_value_type_pointer pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16755
Howard Hinnant82894812010-09-22 16:48:34756 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57757 __map_const_iterator() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16758
Howard Hinnant82894812010-09-22 16:48:34759 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57760 __map_const_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnant82894812010-09-22 16:48:34761 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9c8e6632015-03-03 20:10:01762 __map_const_iterator(__map_iterator<
763 typename _TreeIterator::__non_const_iterator> __i) _NOEXCEPT
764 : __i_(__i.__i_) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16765
Howard Hinnant82894812010-09-22 16:48:34766 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40767 reference operator*() const {return __i_->__cc;}
Howard Hinnant82894812010-09-22 16:48:34768 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40769 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__cc);}
Howard Hinnantbc8d3f92010-05-11 19:42:16770
Howard Hinnant82894812010-09-22 16:48:34771 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16772 __map_const_iterator& operator++() {++__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34773 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16774 __map_const_iterator operator++(int)
775 {
776 __map_const_iterator __t(*this);
777 ++(*this);
778 return __t;
779 }
780
Howard Hinnant82894812010-09-22 16:48:34781 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16782 __map_const_iterator& operator--() {--__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34783 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16784 __map_const_iterator operator--(int)
785 {
786 __map_const_iterator __t(*this);
787 --(*this);
788 return __t;
789 }
790
Howard Hinnant82894812010-09-22 16:48:34791 friend _LIBCPP_INLINE_VISIBILITY
792 bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16793 {return __x.__i_ == __y.__i_;}
Howard Hinnant82894812010-09-22 16:48:34794 friend _LIBCPP_INLINE_VISIBILITY
795 bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16796 {return __x.__i_ != __y.__i_;}
797
Eric Fiselierc3589a82017-01-04 23:56:00798 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS map;
799 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS multimap;
800 template <class, class, class> friend class _LIBCPP_TEMPLATE_VIS __tree_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16801};
802
803template <class _Key, class _Tp, class _Compare = less<_Key>,
804 class _Allocator = allocator<pair<const _Key, _Tp> > >
Eric Fiselierc3589a82017-01-04 23:56:00805class _LIBCPP_TEMPLATE_VIS map
Howard Hinnantbc8d3f92010-05-11 19:42:16806{
807public:
808 // types:
809 typedef _Key key_type;
810 typedef _Tp mapped_type;
811 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant70342b92013-06-19 21:29:40812 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16813 typedef _Compare key_compare;
814 typedef _Allocator allocator_type;
815 typedef value_type& reference;
816 typedef const value_type& const_reference;
817
Marshall Clow14ba0ad2015-11-26 01:24:04818 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
819 "Allocator::value_type must be same type as value_type");
820
Eric Fiselierc3589a82017-01-04 23:56:00821 class _LIBCPP_TEMPLATE_VIS value_compare
Howard Hinnantbc8d3f92010-05-11 19:42:16822 : public binary_function<value_type, value_type, bool>
823 {
824 friend class map;
825 protected:
826 key_compare comp;
827
Howard Hinnant82894812010-09-22 16:48:34828 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16829 public:
Howard Hinnant82894812010-09-22 16:48:34830 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16831 bool operator()(const value_type& __x, const value_type& __y) const
832 {return comp(__x.first, __y.first);}
833 };
834
835private:
Howard Hinnant70342b92013-06-19 21:29:40836
Howard Hinnantff7546e2013-09-30 19:08:22837 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant9b128e02013-07-05 18:06:00838 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow66302c62015-04-07 05:21:38839 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
840 __value_type>::type __allocator_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16841 typedef __tree<__value_type, __vc, __allocator_type> __base;
842 typedef typename __base::__node_traits __node_traits;
843 typedef allocator_traits<allocator_type> __alloc_traits;
844
845 __base __tree_;
846
847public:
848 typedef typename __alloc_traits::pointer pointer;
849 typedef typename __alloc_traits::const_pointer const_pointer;
850 typedef typename __alloc_traits::size_type size_type;
851 typedef typename __alloc_traits::difference_type difference_type;
Eric Fiselier9c8e6632015-03-03 20:10:01852 typedef __map_iterator<typename __base::iterator> iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16853 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnant0949eed2011-06-30 21:18:19854 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
855 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16856
Howard Hinnant82894812010-09-22 16:48:34857 _LIBCPP_INLINE_VISIBILITY
Marshall Clowcaaa1412014-03-10 04:50:10858 map()
859 _NOEXCEPT_(
860 is_nothrow_default_constructible<allocator_type>::value &&
861 is_nothrow_default_constructible<key_compare>::value &&
862 is_nothrow_copy_constructible<key_compare>::value)
863 : __tree_(__vc(key_compare())) {}
864
865 _LIBCPP_INLINE_VISIBILITY
866 explicit map(const key_compare& __comp)
Howard Hinnant7686add2011-06-04 14:31:57867 _NOEXCEPT_(
868 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant7686add2011-06-04 14:31:57869 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16870 : __tree_(__vc(__comp)) {}
871
Howard Hinnant82894812010-09-22 16:48:34872 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16873 explicit map(const key_compare& __comp, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:40874 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16875
876 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34877 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16878 map(_InputIterator __f, _InputIterator __l,
879 const key_compare& __comp = key_compare())
880 : __tree_(__vc(__comp))
881 {
882 insert(__f, __l);
883 }
884
885 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34886 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16887 map(_InputIterator __f, _InputIterator __l,
888 const key_compare& __comp, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:40889 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:16890 {
891 insert(__f, __l);
892 }
893
Marshall Clow49d596d2013-09-11 01:15:47894#if _LIBCPP_STD_VER > 11
895 template <class _InputIterator>
Eric Fiselier856712b2017-01-05 06:06:18896 _LIBCPP_INLINE_VISIBILITY
Marshall Clow49d596d2013-09-11 01:15:47897 map(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
898 : map(__f, __l, key_compare(), __a) {}
899#endif
900
Howard Hinnant82894812010-09-22 16:48:34901 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16902 map(const map& __m)
903 : __tree_(__m.__tree_)
904 {
905 insert(__m.begin(), __m.end());
906 }
907
Howard Hinnant61aa6012011-07-01 19:24:36908 _LIBCPP_INLINE_VISIBILITY
909 map& operator=(const map& __m)
910 {
Marshall Clow3f013892016-07-18 13:19:00911#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant61aa6012011-07-01 19:24:36912 __tree_ = __m.__tree_;
Howard Hinnant70342b92013-06-19 21:29:40913#else
Marshall Clowebfc50e2014-02-08 04:03:14914 if (this != &__m) {
915 __tree_.clear();
916 __tree_.value_comp() = __m.__tree_.value_comp();
917 __tree_.__copy_assign_alloc(__m.__tree_);
918 insert(__m.begin(), __m.end());
919 }
Howard Hinnant70342b92013-06-19 21:29:40920#endif
Howard Hinnant61aa6012011-07-01 19:24:36921 return *this;
922 }
923
Eric Fiselierce924dc2017-04-18 21:08:06924#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16925
Howard Hinnant82894812010-09-22 16:48:34926 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16927 map(map&& __m)
Howard Hinnant7686add2011-06-04 14:31:57928 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnant0949eed2011-06-30 21:18:19929 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantbc8d3f92010-05-11 19:42:16930 {
931 }
932
933 map(map&& __m, const allocator_type& __a);
934
Howard Hinnant82894812010-09-22 16:48:34935 _LIBCPP_INLINE_VISIBILITY
Howard Hinnante3e32912011-08-12 21:56:02936 map& operator=(map&& __m)
937 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
938 {
939 __tree_ = _VSTD::move(__m.__tree_);
940 return *this;
941 }
942
Howard Hinnante3e32912011-08-12 21:56:02943 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16944 map(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
945 : __tree_(__vc(__comp))
946 {
947 insert(__il.begin(), __il.end());
948 }
949
Howard Hinnant82894812010-09-22 16:48:34950 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16951 map(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:40952 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:16953 {
954 insert(__il.begin(), __il.end());
955 }
956
Marshall Clow49d596d2013-09-11 01:15:47957#if _LIBCPP_STD_VER > 11
Eric Fiselier856712b2017-01-05 06:06:18958 _LIBCPP_INLINE_VISIBILITY
Marshall Clow49d596d2013-09-11 01:15:47959 map(initializer_list<value_type> __il, const allocator_type& __a)
960 : map(__il, key_compare(), __a) {}
961#endif
962
Howard Hinnant82894812010-09-22 16:48:34963 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16964 map& operator=(initializer_list<value_type> __il)
965 {
966 __tree_.__assign_unique(__il.begin(), __il.end());
967 return *this;
968 }
969
Eric Fiselierce924dc2017-04-18 21:08:06970#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16971
Howard Hinnant82894812010-09-22 16:48:34972 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16973 explicit map(const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:40974 : __tree_(typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:16975 {
976 }
977
Howard Hinnant82894812010-09-22 16:48:34978 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16979 map(const map& __m, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:40980 : __tree_(__m.__tree_.value_comp(), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:16981 {
982 insert(__m.begin(), __m.end());
983 }
984
Howard Hinnant82894812010-09-22 16:48:34985 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57986 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:34987 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57988 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:34989 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57990 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant82894812010-09-22 16:48:34991 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57992 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantbc8d3f92010-05-11 19:42:16993
Howard Hinnant82894812010-09-22 16:48:34994 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57995 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:34996 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57997 const_reverse_iterator rbegin() const _NOEXCEPT
998 {return const_reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:34999 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571000 reverse_iterator rend() _NOEXCEPT
1001 {return reverse_iterator(begin());}
Howard Hinnant82894812010-09-22 16:48:341002 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571003 const_reverse_iterator rend() const _NOEXCEPT
1004 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:161005
Howard Hinnant82894812010-09-22 16:48:341006 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571007 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant82894812010-09-22 16:48:341008 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571009 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant82894812010-09-22 16:48:341010 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571011 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant82894812010-09-22 16:48:341012 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571013 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:161014
Howard Hinnant82894812010-09-22 16:48:341015 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571016 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant82894812010-09-22 16:48:341017 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571018 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant82894812010-09-22 16:48:341019 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571020 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantbc8d3f92010-05-11 19:42:161021
1022 mapped_type& operator[](const key_type& __k);
Eric Fiselierd2864672016-03-31 03:13:371023#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161024 mapped_type& operator[](key_type&& __k);
1025#endif
1026
1027 mapped_type& at(const key_type& __k);
1028 const mapped_type& at(const key_type& __k) const;
1029
Howard Hinnant82894812010-09-22 16:48:341030 _LIBCPP_INLINE_VISIBILITY
Marshall Clowd4badbb2016-08-17 05:58:401031 allocator_type get_allocator() const _NOEXCEPT {return allocator_type(__tree_.__alloc());}
Howard Hinnant82894812010-09-22 16:48:341032 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161033 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant82894812010-09-22 16:48:341034 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161035 value_compare value_comp() const {return value_compare(__tree_.value_comp().key_comp());}
1036
Eric Fiselierdb215062016-03-31 02:15:151037#ifndef _LIBCPP_CXX03_LANG
1038 template <class ..._Args>
1039 _LIBCPP_INLINE_VISIBILITY
1040 pair<iterator, bool> emplace(_Args&& ...__args) {
1041 return __tree_.__emplace_unique(_VSTD::forward<_Args>(__args)...);
1042 }
Howard Hinnant73d21a42010-09-04 23:28:191043
Howard Hinnant635ce1d2012-05-25 22:04:211044 template <class ..._Args>
Eric Fiselierdb215062016-03-31 02:15:151045 _LIBCPP_INLINE_VISIBILITY
1046 iterator emplace_hint(const_iterator __p, _Args&& ...__args) {
1047 return __tree_.__emplace_hint_unique(__p.__i_, _VSTD::forward<_Args>(__args)...);
1048 }
Howard Hinnant73d21a42010-09-04 23:28:191049
Howard Hinnant99968442011-11-29 18:15:501050 template <class _Pp,
1051 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:341052 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:501053 pair<iterator, bool> insert(_Pp&& __p)
1054 {return __tree_.__insert_unique(_VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:161055
Howard Hinnant99968442011-11-29 18:15:501056 template <class _Pp,
1057 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:341058 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:501059 iterator insert(const_iterator __pos, _Pp&& __p)
1060 {return __tree_.__insert_unique(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:161061
Eric Fiselierdb215062016-03-31 02:15:151062#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161063
Howard Hinnant82894812010-09-22 16:48:341064 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161065 pair<iterator, bool>
1066 insert(const value_type& __v) {return __tree_.__insert_unique(__v);}
1067
Howard Hinnant82894812010-09-22 16:48:341068 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161069 iterator
1070 insert(const_iterator __p, const value_type& __v)
1071 {return __tree_.__insert_unique(__p.__i_, __v);}
1072
Eric Fiselier91a15652016-04-18 01:40:451073#ifndef _LIBCPP_CXX03_LANG
Marshall Clow3426a862016-01-05 19:32:411074 _LIBCPP_INLINE_VISIBILITY
1075 pair<iterator, bool>
Eric Fiselierdb215062016-03-31 02:15:151076 insert(value_type&& __v) {return __tree_.__insert_unique(_VSTD::move(__v));}
Marshall Clow3426a862016-01-05 19:32:411077
1078 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierdb215062016-03-31 02:15:151079 iterator insert(const_iterator __p, value_type&& __v)
1080 {return __tree_.__insert_unique(__p.__i_, _VSTD::move(__v));}
Eric Fiselierce924dc2017-04-18 21:08:061081
1082 _LIBCPP_INLINE_VISIBILITY
1083 void insert(initializer_list<value_type> __il)
1084 {insert(__il.begin(), __il.end());}
Marshall Clow3426a862016-01-05 19:32:411085#endif
1086
Howard Hinnantbc8d3f92010-05-11 19:42:161087 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:341088 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161089 void insert(_InputIterator __f, _InputIterator __l)
1090 {
1091 for (const_iterator __e = cend(); __f != __l; ++__f)
1092 insert(__e.__i_, *__f);
1093 }
1094
Marshall Clowf3a1a182015-07-07 03:37:331095#if _LIBCPP_STD_VER > 14
Eric Fiselierd2864672016-03-31 03:13:371096
Marshall Clowf3a1a182015-07-07 03:37:331097 template <class... _Args>
1098 _LIBCPP_INLINE_VISIBILITY
1099 pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args)
1100 {
Eric Fiselierd2864672016-03-31 03:13:371101 return __tree_.__emplace_unique_key_args(__k,
1102 _VSTD::piecewise_construct,
1103 _VSTD::forward_as_tuple(__k),
1104 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clowf3a1a182015-07-07 03:37:331105 }
1106
1107 template <class... _Args>
1108 _LIBCPP_INLINE_VISIBILITY
1109 pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args)
1110 {
Eric Fiselierd2864672016-03-31 03:13:371111 return __tree_.__emplace_unique_key_args(__k,
1112 _VSTD::piecewise_construct,
1113 _VSTD::forward_as_tuple(_VSTD::move(__k)),
1114 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clowf3a1a182015-07-07 03:37:331115 }
1116
1117 template <class... _Args>
1118 _LIBCPP_INLINE_VISIBILITY
1119 iterator try_emplace(const_iterator __h, const key_type& __k, _Args&&... __args)
1120 {
Eric Fiselierd2864672016-03-31 03:13:371121 return __tree_.__emplace_hint_unique_key_args(__h.__i_, __k,
1122 _VSTD::piecewise_construct,
1123 _VSTD::forward_as_tuple(__k),
1124 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clowf3a1a182015-07-07 03:37:331125 }
1126
1127 template <class... _Args>
1128 _LIBCPP_INLINE_VISIBILITY
1129 iterator try_emplace(const_iterator __h, key_type&& __k, _Args&&... __args)
1130 {
Eric Fiselierd2864672016-03-31 03:13:371131 return __tree_.__emplace_hint_unique_key_args(__h.__i_, __k,
1132 _VSTD::piecewise_construct,
1133 _VSTD::forward_as_tuple(_VSTD::move(__k)),
1134 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clowf3a1a182015-07-07 03:37:331135 }
1136
1137 template <class _Vp>
1138 _LIBCPP_INLINE_VISIBILITY
1139 pair<iterator, bool> insert_or_assign(const key_type& __k, _Vp&& __v)
1140 {
1141 iterator __p = lower_bound(__k);
1142 if ( __p != end() && !key_comp()(__k, __p->first))
1143 {
1144 __p->second = _VSTD::forward<_Vp>(__v);
1145 return _VSTD::make_pair(__p, false);
1146 }
1147 return _VSTD::make_pair(emplace_hint(__p, __k, _VSTD::forward<_Vp>(__v)), true);
1148 }
Eric Fiselierd2864672016-03-31 03:13:371149
Marshall Clowf3a1a182015-07-07 03:37:331150 template <class _Vp>
1151 _LIBCPP_INLINE_VISIBILITY
1152 pair<iterator, bool> insert_or_assign(key_type&& __k, _Vp&& __v)
1153 {
1154 iterator __p = lower_bound(__k);
1155 if ( __p != end() && !key_comp()(__k, __p->first))
1156 {
1157 __p->second = _VSTD::forward<_Vp>(__v);
1158 return _VSTD::make_pair(__p, false);
1159 }
1160 return _VSTD::make_pair(emplace_hint(__p, _VSTD::move(__k), _VSTD::forward<_Vp>(__v)), true);
1161 }
1162
1163 template <class _Vp>
1164 _LIBCPP_INLINE_VISIBILITY
1165 iterator insert_or_assign(const_iterator __h, const key_type& __k, _Vp&& __v)
1166 {
1167 iterator __p = lower_bound(__k);
1168 if ( __p != end() && !key_comp()(__k, __p->first))
1169 {
1170 __p->second = _VSTD::forward<_Vp>(__v);
1171 return __p;
1172 }
1173 return emplace_hint(__h, __k, _VSTD::forward<_Vp>(__v));
1174 }
1175
1176 template <class _Vp>
1177 _LIBCPP_INLINE_VISIBILITY
1178 iterator insert_or_assign(const_iterator __h, 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 __p;
1185 }
1186 return emplace_hint(__h, _VSTD::move(__k), _VSTD::forward<_Vp>(__v));
1187 }
Eric Fiselierd2864672016-03-31 03:13:371188
Eric Fiselierce924dc2017-04-18 21:08:061189#endif // _LIBCPP_STD_VER > 14
Marshall Clowf3a1a182015-07-07 03:37:331190
Howard Hinnant82894812010-09-22 16:48:341191 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161192 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant82894812010-09-22 16:48:341193 _LIBCPP_INLINE_VISIBILITY
Marshall Clow488025c2015-05-10 13:35:001194 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1195 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161196 size_type erase(const key_type& __k)
1197 {return __tree_.__erase_unique(__k);}
Howard Hinnant82894812010-09-22 16:48:341198 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161199 iterator erase(const_iterator __f, const_iterator __l)
1200 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant82894812010-09-22 16:48:341201 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571202 void clear() _NOEXCEPT {__tree_.clear();}
Howard Hinnantbc8d3f92010-05-11 19:42:161203
Howard Hinnant82894812010-09-22 16:48:341204 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571205 void swap(map& __m)
1206 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1207 {__tree_.swap(__m.__tree_);}
Howard Hinnantbc8d3f92010-05-11 19:42:161208
Howard Hinnant82894812010-09-22 16:48:341209 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161210 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant82894812010-09-22 16:48:341211 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161212 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471213#if _LIBCPP_STD_VER > 11
1214 template <typename _K2>
1215 _LIBCPP_INLINE_VISIBILITY
1216 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1217 find(const _K2& __k) {return __tree_.find(__k);}
1218 template <typename _K2>
1219 _LIBCPP_INLINE_VISIBILITY
1220 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1221 find(const _K2& __k) const {return __tree_.find(__k);}
1222#endif
1223
Howard Hinnant82894812010-09-22 16:48:341224 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161225 size_type count(const key_type& __k) const
1226 {return __tree_.__count_unique(__k);}
Marshall Clow4de32042014-08-24 23:54:161227#if _LIBCPP_STD_VER > 11
1228 template <typename _K2>
1229 _LIBCPP_INLINE_VISIBILITY
1230 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Marshall Clow58113db2015-06-30 18:15:411231 count(const _K2& __k) const {return __tree_.__count_unique(__k);}
Marshall Clow4de32042014-08-24 23:54:161232#endif
Howard Hinnant82894812010-09-22 16:48:341233 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161234 iterator lower_bound(const key_type& __k)
1235 {return __tree_.lower_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:341236 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161237 const_iterator lower_bound(const key_type& __k) const
1238 {return __tree_.lower_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471239#if _LIBCPP_STD_VER > 11
1240 template <typename _K2>
1241 _LIBCPP_INLINE_VISIBILITY
1242 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1243 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1244
1245 template <typename _K2>
1246 _LIBCPP_INLINE_VISIBILITY
1247 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1248 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1249#endif
1250
Howard Hinnant82894812010-09-22 16:48:341251 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161252 iterator upper_bound(const key_type& __k)
1253 {return __tree_.upper_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:341254 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161255 const_iterator upper_bound(const key_type& __k) const
1256 {return __tree_.upper_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471257#if _LIBCPP_STD_VER > 11
1258 template <typename _K2>
1259 _LIBCPP_INLINE_VISIBILITY
1260 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1261 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
1262 template <typename _K2>
1263 _LIBCPP_INLINE_VISIBILITY
1264 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1265 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
1266#endif
1267
Howard Hinnant82894812010-09-22 16:48:341268 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161269 pair<iterator,iterator> equal_range(const key_type& __k)
1270 {return __tree_.__equal_range_unique(__k);}
Howard Hinnant82894812010-09-22 16:48:341271 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161272 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
1273 {return __tree_.__equal_range_unique(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471274#if _LIBCPP_STD_VER > 11
1275 template <typename _K2>
1276 _LIBCPP_INLINE_VISIBILITY
1277 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
1278 equal_range(const _K2& __k) {return __tree_.__equal_range_unique(__k);}
1279 template <typename _K2>
1280 _LIBCPP_INLINE_VISIBILITY
1281 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
1282 equal_range(const _K2& __k) const {return __tree_.__equal_range_unique(__k);}
1283#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161284
1285private:
1286 typedef typename __base::__node __node;
1287 typedef typename __base::__node_allocator __node_allocator;
1288 typedef typename __base::__node_pointer __node_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:161289 typedef typename __base::__node_base_pointer __node_base_pointer;
Eric Fiselier856712b2017-01-05 06:06:181290 typedef typename __base::__parent_pointer __parent_pointer;
Eric Fiselier227b47c2016-02-20 07:12:171291
Howard Hinnant99968442011-11-29 18:15:501292 typedef __map_node_destructor<__node_allocator> _Dp;
1293 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:161294
Eric Fiselierd2864672016-03-31 03:13:371295#ifdef _LIBCPP_CXX03_LANG
Howard Hinnantb66e1c32013-07-04 20:59:161296 __node_holder __construct_node_with_key(const key_type& __k);
Eric Fiselierd2864672016-03-31 03:13:371297#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161298};
1299
Eric Fiselier227b47c2016-02-20 07:12:171300
Eric Fiselierdb215062016-03-31 02:15:151301#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161302template <class _Key, class _Tp, class _Compare, class _Allocator>
1303map<_Key, _Tp, _Compare, _Allocator>::map(map&& __m, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401304 : __tree_(_VSTD::move(__m.__tree_), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:161305{
1306 if (__a != __m.get_allocator())
1307 {
1308 const_iterator __e = cend();
1309 while (!__m.empty())
1310 __tree_.__insert_unique(__e.__i_,
Eric Fiselierdb215062016-03-31 02:15:151311 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_.__nc));
Howard Hinnantbc8d3f92010-05-11 19:42:161312 }
1313}
1314
Eric Fiselierce924dc2017-04-18 21:08:061315template <class _Key, class _Tp, class _Compare, class _Allocator>
1316_Tp&
1317map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1318{
1319 return __tree_.__emplace_unique_key_args(__k,
1320 _VSTD::piecewise_construct,
1321 _VSTD::forward_as_tuple(__k),
1322 _VSTD::forward_as_tuple()).first->__cc.second;
1323}
Howard Hinnantbc8d3f92010-05-11 19:42:161324
Eric Fiselierce924dc2017-04-18 21:08:061325template <class _Key, class _Tp, class _Compare, class _Allocator>
1326_Tp&
1327map<_Key, _Tp, _Compare, _Allocator>::operator[](key_type&& __k)
1328{
1329 return __tree_.__emplace_unique_key_args(__k,
1330 _VSTD::piecewise_construct,
1331 _VSTD::forward_as_tuple(_VSTD::move(__k)),
1332 _VSTD::forward_as_tuple()).first->__cc.second;
1333}
Eric Fiselierd2864672016-03-31 03:13:371334
Eric Fiselierce924dc2017-04-18 21:08:061335#else // _LIBCPP_CXX03_LANG
Eric Fiselierd2864672016-03-31 03:13:371336
Howard Hinnantbc8d3f92010-05-11 19:42:161337template <class _Key, class _Tp, class _Compare, class _Allocator>
1338typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantb66e1c32013-07-04 20:59:161339map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(const key_type& __k)
Howard Hinnantbc8d3f92010-05-11 19:42:161340{
1341 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:501342 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant70342b92013-06-19 21:29:401343 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), __k);
Howard Hinnantbc8d3f92010-05-11 19:42:161344 __h.get_deleter().__first_constructed = true;
Howard Hinnant70342b92013-06-19 21:29:401345 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantbc8d3f92010-05-11 19:42:161346 __h.get_deleter().__second_constructed = true;
Dimitry Andric89663502015-08-19 06:43:331347 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
Howard Hinnantbc8d3f92010-05-11 19:42:161348}
1349
Howard Hinnantbc8d3f92010-05-11 19:42:161350template <class _Key, class _Tp, class _Compare, class _Allocator>
1351_Tp&
1352map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1353{
Eric Fiselier856712b2017-01-05 06:06:181354 __parent_pointer __parent;
1355 __node_base_pointer& __child = __tree_.__find_equal(__parent, __k);
Howard Hinnantbc8d3f92010-05-11 19:42:161356 __node_pointer __r = static_cast<__node_pointer>(__child);
1357 if (__child == nullptr)
1358 {
Howard Hinnantb66e1c32013-07-04 20:59:161359 __node_holder __h = __construct_node_with_key(__k);
Howard Hinnant70342b92013-06-19 21:29:401360 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:161361 __r = __h.release();
1362 }
Howard Hinnant70342b92013-06-19 21:29:401363 return __r->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:161364}
1365
Eric Fiselierce924dc2017-04-18 21:08:061366#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161367
1368template <class _Key, class _Tp, class _Compare, class _Allocator>
1369_Tp&
1370map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k)
1371{
Eric Fiselier856712b2017-01-05 06:06:181372 __parent_pointer __parent;
1373 __node_base_pointer& __child = __tree_.__find_equal(__parent, __k);
Howard Hinnantd4444702010-08-11 17:04:311374#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:161375 if (__child == nullptr)
1376 throw out_of_range("map::at: key not found");
Howard Hinnant324bb032010-08-22 00:02:431377#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant70342b92013-06-19 21:29:401378 return static_cast<__node_pointer>(__child)->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:161379}
1380
1381template <class _Key, class _Tp, class _Compare, class _Allocator>
1382const _Tp&
1383map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) const
1384{
Eric Fiselier856712b2017-01-05 06:06:181385 __parent_pointer __parent;
1386 __node_base_pointer __child = __tree_.__find_equal(__parent, __k);
Howard Hinnantd4444702010-08-11 17:04:311387#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:161388 if (__child == nullptr)
1389 throw out_of_range("map::at: key not found");
Howard Hinnant324bb032010-08-22 00:02:431390#endif // _LIBCPP_NO_EXCEPTIONS
Eric Fiselier227b47c2016-02-20 07:12:171391 return static_cast<__node_pointer>(__child)->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:161392}
1393
Howard Hinnantbc8d3f92010-05-11 19:42:161394
1395template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341396inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161397bool
1398operator==(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1399 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1400{
Howard Hinnant0949eed2011-06-30 21:18:191401 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantbc8d3f92010-05-11 19:42:161402}
1403
1404template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341405inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161406bool
1407operator< (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1408 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1409{
Howard Hinnant0949eed2011-06-30 21:18:191410 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantbc8d3f92010-05-11 19:42:161411}
1412
1413template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341414inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161415bool
1416operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1417 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1418{
1419 return !(__x == __y);
1420}
1421
1422template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341423inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161424bool
1425operator> (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1426 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1427{
1428 return __y < __x;
1429}
1430
1431template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341432inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161433bool
1434operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1435 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1436{
1437 return !(__x < __y);
1438}
1439
1440template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341441inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161442bool
1443operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1444 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1445{
1446 return !(__y < __x);
1447}
1448
1449template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341450inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161451void
1452swap(map<_Key, _Tp, _Compare, _Allocator>& __x,
1453 map<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant7686add2011-06-04 14:31:571454 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantbc8d3f92010-05-11 19:42:161455{
1456 __x.swap(__y);
1457}
1458
1459template <class _Key, class _Tp, class _Compare = less<_Key>,
1460 class _Allocator = allocator<pair<const _Key, _Tp> > >
Eric Fiselierc3589a82017-01-04 23:56:001461class _LIBCPP_TEMPLATE_VIS multimap
Howard Hinnantbc8d3f92010-05-11 19:42:161462{
1463public:
1464 // types:
1465 typedef _Key key_type;
1466 typedef _Tp mapped_type;
1467 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant70342b92013-06-19 21:29:401468 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:161469 typedef _Compare key_compare;
1470 typedef _Allocator allocator_type;
1471 typedef value_type& reference;
1472 typedef const value_type& const_reference;
1473
Marshall Clow14ba0ad2015-11-26 01:24:041474 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
1475 "Allocator::value_type must be same type as value_type");
1476
Eric Fiselierc3589a82017-01-04 23:56:001477 class _LIBCPP_TEMPLATE_VIS value_compare
Howard Hinnantbc8d3f92010-05-11 19:42:161478 : public binary_function<value_type, value_type, bool>
1479 {
1480 friend class multimap;
1481 protected:
1482 key_compare comp;
1483
Howard Hinnant82894812010-09-22 16:48:341484 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161485 value_compare(key_compare c) : comp(c) {}
1486 public:
Howard Hinnant82894812010-09-22 16:48:341487 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161488 bool operator()(const value_type& __x, const value_type& __y) const
1489 {return comp(__x.first, __y.first);}
1490 };
1491
1492private:
Howard Hinnant70342b92013-06-19 21:29:401493
Howard Hinnantff7546e2013-09-30 19:08:221494 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant9b128e02013-07-05 18:06:001495 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow66302c62015-04-07 05:21:381496 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
1497 __value_type>::type __allocator_type;
Howard Hinnantbc8d3f92010-05-11 19:42:161498 typedef __tree<__value_type, __vc, __allocator_type> __base;
1499 typedef typename __base::__node_traits __node_traits;
1500 typedef allocator_traits<allocator_type> __alloc_traits;
1501
1502 __base __tree_;
1503
1504public:
1505 typedef typename __alloc_traits::pointer pointer;
1506 typedef typename __alloc_traits::const_pointer const_pointer;
1507 typedef typename __alloc_traits::size_type size_type;
1508 typedef typename __alloc_traits::difference_type difference_type;
1509 typedef __map_iterator<typename __base::iterator> iterator;
1510 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnant0949eed2011-06-30 21:18:191511 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
1512 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:161513
Howard Hinnant82894812010-09-22 16:48:341514 _LIBCPP_INLINE_VISIBILITY
Marshall Clowcaaa1412014-03-10 04:50:101515 multimap()
1516 _NOEXCEPT_(
1517 is_nothrow_default_constructible<allocator_type>::value &&
1518 is_nothrow_default_constructible<key_compare>::value &&
1519 is_nothrow_copy_constructible<key_compare>::value)
1520 : __tree_(__vc(key_compare())) {}
1521
1522 _LIBCPP_INLINE_VISIBILITY
1523 explicit multimap(const key_compare& __comp)
Howard Hinnant7686add2011-06-04 14:31:571524 _NOEXCEPT_(
1525 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant7686add2011-06-04 14:31:571526 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:161527 : __tree_(__vc(__comp)) {}
1528
Howard Hinnant82894812010-09-22 16:48:341529 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161530 explicit multimap(const key_compare& __comp, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401531 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:161532
1533 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:341534 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161535 multimap(_InputIterator __f, _InputIterator __l,
1536 const key_compare& __comp = key_compare())
1537 : __tree_(__vc(__comp))
1538 {
1539 insert(__f, __l);
1540 }
1541
1542 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:341543 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161544 multimap(_InputIterator __f, _InputIterator __l,
1545 const key_compare& __comp, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401546 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:161547 {
1548 insert(__f, __l);
1549 }
1550
Marshall Clow49d596d2013-09-11 01:15:471551#if _LIBCPP_STD_VER > 11
1552 template <class _InputIterator>
Eric Fiselier856712b2017-01-05 06:06:181553 _LIBCPP_INLINE_VISIBILITY
Marshall Clow49d596d2013-09-11 01:15:471554 multimap(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
1555 : multimap(__f, __l, key_compare(), __a) {}
1556#endif
1557
Howard Hinnant82894812010-09-22 16:48:341558 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161559 multimap(const multimap& __m)
1560 : __tree_(__m.__tree_.value_comp(),
1561 __alloc_traits::select_on_container_copy_construction(__m.__tree_.__alloc()))
1562 {
1563 insert(__m.begin(), __m.end());
1564 }
1565
Howard Hinnant61aa6012011-07-01 19:24:361566 _LIBCPP_INLINE_VISIBILITY
1567 multimap& operator=(const multimap& __m)
1568 {
Marshall Clow3f013892016-07-18 13:19:001569#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant61aa6012011-07-01 19:24:361570 __tree_ = __m.__tree_;
Howard Hinnant70342b92013-06-19 21:29:401571#else
Marshall Clowebfc50e2014-02-08 04:03:141572 if (this != &__m) {
1573 __tree_.clear();
1574 __tree_.value_comp() = __m.__tree_.value_comp();
1575 __tree_.__copy_assign_alloc(__m.__tree_);
1576 insert(__m.begin(), __m.end());
1577 }
Howard Hinnant70342b92013-06-19 21:29:401578#endif
Howard Hinnant61aa6012011-07-01 19:24:361579 return *this;
1580 }
1581
Eric Fiselierce924dc2017-04-18 21:08:061582#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161583
Howard Hinnant82894812010-09-22 16:48:341584 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161585 multimap(multimap&& __m)
Howard Hinnant7686add2011-06-04 14:31:571586 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnant0949eed2011-06-30 21:18:191587 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantbc8d3f92010-05-11 19:42:161588 {
1589 }
1590
1591 multimap(multimap&& __m, const allocator_type& __a);
1592
Howard Hinnant82894812010-09-22 16:48:341593 _LIBCPP_INLINE_VISIBILITY
Howard Hinnante3e32912011-08-12 21:56:021594 multimap& operator=(multimap&& __m)
1595 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1596 {
1597 __tree_ = _VSTD::move(__m.__tree_);
1598 return *this;
1599 }
1600
Howard Hinnante3e32912011-08-12 21:56:021601 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161602 multimap(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
1603 : __tree_(__vc(__comp))
1604 {
1605 insert(__il.begin(), __il.end());
1606 }
1607
Howard Hinnant82894812010-09-22 16:48:341608 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161609 multimap(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401610 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:161611 {
1612 insert(__il.begin(), __il.end());
1613 }
1614
Marshall Clow49d596d2013-09-11 01:15:471615#if _LIBCPP_STD_VER > 11
Eric Fiselier856712b2017-01-05 06:06:181616 _LIBCPP_INLINE_VISIBILITY
Marshall Clow49d596d2013-09-11 01:15:471617 multimap(initializer_list<value_type> __il, const allocator_type& __a)
1618 : multimap(__il, key_compare(), __a) {}
1619#endif
1620
Howard Hinnant82894812010-09-22 16:48:341621 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161622 multimap& operator=(initializer_list<value_type> __il)
1623 {
1624 __tree_.__assign_multi(__il.begin(), __il.end());
1625 return *this;
1626 }
Howard Hinnante3e32912011-08-12 21:56:021627
Eric Fiselierce924dc2017-04-18 21:08:061628#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161629
Howard Hinnant82894812010-09-22 16:48:341630 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161631 explicit multimap(const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401632 : __tree_(typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:161633 {
1634 }
1635
Howard Hinnant82894812010-09-22 16:48:341636 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161637 multimap(const multimap& __m, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401638 : __tree_(__m.__tree_.value_comp(), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:161639 {
1640 insert(__m.begin(), __m.end());
1641 }
1642
Howard Hinnant82894812010-09-22 16:48:341643 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571644 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:341645 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571646 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:341647 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571648 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant82894812010-09-22 16:48:341649 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571650 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantbc8d3f92010-05-11 19:42:161651
Howard Hinnant82894812010-09-22 16:48:341652 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571653 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:341654 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571655 const_reverse_iterator rbegin() const _NOEXCEPT
1656 {return const_reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:341657 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571658 reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
Howard Hinnant82894812010-09-22 16:48:341659 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571660 const_reverse_iterator rend() const _NOEXCEPT
1661 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:161662
Howard Hinnant82894812010-09-22 16:48:341663 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571664 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant82894812010-09-22 16:48:341665 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571666 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant82894812010-09-22 16:48:341667 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571668 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant82894812010-09-22 16:48:341669 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571670 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:161671
Howard Hinnant82894812010-09-22 16:48:341672 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571673 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant82894812010-09-22 16:48:341674 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571675 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant82894812010-09-22 16:48:341676 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571677 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantbc8d3f92010-05-11 19:42:161678
Howard Hinnant82894812010-09-22 16:48:341679 _LIBCPP_INLINE_VISIBILITY
Marshall Clowd4badbb2016-08-17 05:58:401680 allocator_type get_allocator() const _NOEXCEPT {return allocator_type(__tree_.__alloc());}
Howard Hinnant82894812010-09-22 16:48:341681 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571682 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant82894812010-09-22 16:48:341683 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571684 value_compare value_comp() const
1685 {return value_compare(__tree_.value_comp().key_comp());}
Howard Hinnantbc8d3f92010-05-11 19:42:161686
Eric Fiselierdb215062016-03-31 02:15:151687#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant73d21a42010-09-04 23:28:191688
Howard Hinnant635ce1d2012-05-25 22:04:211689 template <class ..._Args>
Eric Fiselierdb215062016-03-31 02:15:151690 _LIBCPP_INLINE_VISIBILITY
1691 iterator emplace(_Args&& ...__args) {
1692 return __tree_.__emplace_multi(_VSTD::forward<_Args>(__args)...);
1693 }
Howard Hinnantbc8d3f92010-05-11 19:42:161694
Howard Hinnant635ce1d2012-05-25 22:04:211695 template <class ..._Args>
Eric Fiselierdb215062016-03-31 02:15:151696 _LIBCPP_INLINE_VISIBILITY
1697 iterator emplace_hint(const_iterator __p, _Args&& ...__args) {
1698 return __tree_.__emplace_hint_multi(__p.__i_, _VSTD::forward<_Args>(__args)...);
1699 }
Howard Hinnant73d21a42010-09-04 23:28:191700
Howard Hinnant99968442011-11-29 18:15:501701 template <class _Pp,
1702 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:341703 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:501704 iterator insert(_Pp&& __p)
1705 {return __tree_.__insert_multi(_VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:161706
Howard Hinnant99968442011-11-29 18:15:501707 template <class _Pp,
1708 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:341709 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:501710 iterator insert(const_iterator __pos, _Pp&& __p)
1711 {return __tree_.__insert_multi(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:161712
Eric Fiselier91a15652016-04-18 01:40:451713 _LIBCPP_INLINE_VISIBILITY
1714 iterator insert(value_type&& __v)
1715 {return __tree_.__insert_multi(_VSTD::move(__v));}
1716
1717 _LIBCPP_INLINE_VISIBILITY
1718 iterator insert(const_iterator __p, value_type&& __v)
1719 {return __tree_.__insert_multi(__p.__i_, _VSTD::move(__v));}
1720
Eric Fiselierce924dc2017-04-18 21:08:061721
1722 _LIBCPP_INLINE_VISIBILITY
1723 void insert(initializer_list<value_type> __il)
1724 {insert(__il.begin(), __il.end());}
1725
Eric Fiselierdb215062016-03-31 02:15:151726#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161727
Howard Hinnant82894812010-09-22 16:48:341728 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161729 iterator insert(const value_type& __v) {return __tree_.__insert_multi(__v);}
1730
Howard Hinnant82894812010-09-22 16:48:341731 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161732 iterator insert(const_iterator __p, const value_type& __v)
1733 {return __tree_.__insert_multi(__p.__i_, __v);}
1734
1735 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:341736 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161737 void insert(_InputIterator __f, _InputIterator __l)
1738 {
1739 for (const_iterator __e = cend(); __f != __l; ++__f)
1740 __tree_.__insert_multi(__e.__i_, *__f);
1741 }
1742
Howard Hinnant82894812010-09-22 16:48:341743 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161744 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant82894812010-09-22 16:48:341745 _LIBCPP_INLINE_VISIBILITY
Marshall Clow488025c2015-05-10 13:35:001746 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1747 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161748 size_type erase(const key_type& __k) {return __tree_.__erase_multi(__k);}
Howard Hinnant82894812010-09-22 16:48:341749 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161750 iterator erase(const_iterator __f, const_iterator __l)
1751 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant82894812010-09-22 16:48:341752 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161753 void clear() {__tree_.clear();}
1754
Howard Hinnant82894812010-09-22 16:48:341755 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:571756 void swap(multimap& __m)
1757 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1758 {__tree_.swap(__m.__tree_);}
Howard Hinnantbc8d3f92010-05-11 19:42:161759
Howard Hinnant82894812010-09-22 16:48:341760 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161761 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant82894812010-09-22 16:48:341762 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161763 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471764#if _LIBCPP_STD_VER > 11
1765 template <typename _K2>
1766 _LIBCPP_INLINE_VISIBILITY
1767 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1768 find(const _K2& __k) {return __tree_.find(__k);}
1769 template <typename _K2>
1770 _LIBCPP_INLINE_VISIBILITY
1771 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1772 find(const _K2& __k) const {return __tree_.find(__k);}
1773#endif
1774
Howard Hinnant82894812010-09-22 16:48:341775 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161776 size_type count(const key_type& __k) const
1777 {return __tree_.__count_multi(__k);}
Marshall Clow4de32042014-08-24 23:54:161778#if _LIBCPP_STD_VER > 11
1779 template <typename _K2>
1780 _LIBCPP_INLINE_VISIBILITY
1781 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Marshall Clow58113db2015-06-30 18:15:411782 count(const _K2& __k) const {return __tree_.__count_multi(__k);}
Marshall Clow4de32042014-08-24 23:54:161783#endif
Howard Hinnant82894812010-09-22 16:48:341784 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161785 iterator lower_bound(const key_type& __k)
1786 {return __tree_.lower_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:341787 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161788 const_iterator lower_bound(const key_type& __k) const
1789 {return __tree_.lower_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471790#if _LIBCPP_STD_VER > 11
1791 template <typename _K2>
1792 _LIBCPP_INLINE_VISIBILITY
1793 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1794 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1795
1796 template <typename _K2>
1797 _LIBCPP_INLINE_VISIBILITY
1798 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1799 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1800#endif
1801
Howard Hinnant82894812010-09-22 16:48:341802 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161803 iterator upper_bound(const key_type& __k)
1804 {return __tree_.upper_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:341805 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161806 const_iterator upper_bound(const key_type& __k) const
1807 {return __tree_.upper_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471808#if _LIBCPP_STD_VER > 11
1809 template <typename _K2>
1810 _LIBCPP_INLINE_VISIBILITY
1811 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1812 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
1813 template <typename _K2>
1814 _LIBCPP_INLINE_VISIBILITY
1815 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1816 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
1817#endif
1818
Howard Hinnant82894812010-09-22 16:48:341819 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161820 pair<iterator,iterator> equal_range(const key_type& __k)
1821 {return __tree_.__equal_range_multi(__k);}
Howard Hinnant82894812010-09-22 16:48:341822 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161823 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
1824 {return __tree_.__equal_range_multi(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:471825#if _LIBCPP_STD_VER > 11
1826 template <typename _K2>
1827 _LIBCPP_INLINE_VISIBILITY
1828 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
1829 equal_range(const _K2& __k) {return __tree_.__equal_range_multi(__k);}
1830 template <typename _K2>
1831 _LIBCPP_INLINE_VISIBILITY
1832 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
1833 equal_range(const _K2& __k) const {return __tree_.__equal_range_multi(__k);}
1834#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161835
1836private:
1837 typedef typename __base::__node __node;
1838 typedef typename __base::__node_allocator __node_allocator;
1839 typedef typename __base::__node_pointer __node_pointer;
Eric Fiselier227b47c2016-02-20 07:12:171840
Howard Hinnant99968442011-11-29 18:15:501841 typedef __map_node_destructor<__node_allocator> _Dp;
1842 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:161843};
1844
Eric Fiselierdb215062016-03-31 02:15:151845#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:161846template <class _Key, class _Tp, class _Compare, class _Allocator>
1847multimap<_Key, _Tp, _Compare, _Allocator>::multimap(multimap&& __m, const allocator_type& __a)
Marshall Clowd4badbb2016-08-17 05:58:401848 : __tree_(_VSTD::move(__m.__tree_), typename __base::allocator_type(__a))
Howard Hinnantbc8d3f92010-05-11 19:42:161849{
1850 if (__a != __m.get_allocator())
1851 {
1852 const_iterator __e = cend();
1853 while (!__m.empty())
1854 __tree_.__insert_multi(__e.__i_,
Eric Fiselierdb215062016-03-31 02:15:151855 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_.__nc));
Howard Hinnantbc8d3f92010-05-11 19:42:161856 }
1857}
Eric Fiselierdb215062016-03-31 02:15:151858#endif
Howard Hinnantbc8d3f92010-05-11 19:42:161859
1860template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341861inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161862bool
1863operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1864 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1865{
Howard Hinnant0949eed2011-06-30 21:18:191866 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantbc8d3f92010-05-11 19:42:161867}
1868
1869template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341870inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161871bool
1872operator< (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1873 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1874{
Howard Hinnant0949eed2011-06-30 21:18:191875 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantbc8d3f92010-05-11 19:42:161876}
1877
1878template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341879inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161880bool
1881operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1882 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1883{
1884 return !(__x == __y);
1885}
1886
1887template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341888inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161889bool
1890operator> (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1891 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1892{
1893 return __y < __x;
1894}
1895
1896template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341897inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161898bool
1899operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1900 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1901{
1902 return !(__x < __y);
1903}
1904
1905template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341906inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161907bool
1908operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1909 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
1910{
1911 return !(__y < __x);
1912}
1913
1914template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:341915inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:161916void
1917swap(multimap<_Key, _Tp, _Compare, _Allocator>& __x,
1918 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant7686add2011-06-04 14:31:571919 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantbc8d3f92010-05-11 19:42:161920{
1921 __x.swap(__y);
1922}
1923
1924_LIBCPP_END_NAMESPACE_STD
1925
1926#endif // _LIBCPP_MAP