blob: f533d8f4b8a9e4043e55f2cf133a874be591fa22 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------- map ------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_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:57 +000057 map()
58 noexcept(
59 is_nothrow_default_constructible<allocator_type>::value &&
60 is_nothrow_default_constructible<key_compare>::value &&
61 is_nothrow_copy_constructible<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000062 explicit map(const key_compare& comp);
63 map(const key_compare& comp, const allocator_type& a);
64 template <class InputIterator>
65 map(InputIterator first, InputIterator last,
66 const key_compare& comp = key_compare());
67 template <class InputIterator>
68 map(InputIterator first, InputIterator last,
69 const key_compare& comp, const allocator_type& a);
70 map(const map& m);
Howard Hinnant7686add2011-06-04 14:31:57 +000071 map(map&& m)
72 noexcept(
73 is_nothrow_move_constructible<allocator_type>::value &&
74 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000075 explicit map(const allocator_type& a);
76 map(const map& m, const allocator_type& a);
77 map(map&& m, const allocator_type& a);
78 map(initializer_list<value_type> il, const key_compare& comp = key_compare());
79 map(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
Marshall Clow49d596d2013-09-11 01:15:47 +000080 template <class InputIterator>
81 map(InputIterator first, InputIterator last, const allocator_type& a)
82 : map(first, last, Compare(), a) {} // C++14
83 map(initializer_list<value_type> il, const allocator_type& a)
84 : map(il, Compare(), a) {} // C++14
85 ~map();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086
87 map& operator=(const map& m);
Howard Hinnant7686add2011-06-04 14:31:57 +000088 map& operator=(map&& m)
89 noexcept(
90 allocator_type::propagate_on_container_move_assignment::value &&
91 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +000092 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000093 map& operator=(initializer_list<value_type> il);
94
95 // iterators:
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +000096 iterator begin() noexcept;
97 const_iterator begin() const noexcept;
98 iterator end() noexcept;
99 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000100
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000101 reverse_iterator rbegin() noexcept;
102 const_reverse_iterator rbegin() const noexcept;
103 reverse_iterator rend() noexcept;
104 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000105
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000106 const_iterator cbegin() const noexcept;
107 const_iterator cend() const noexcept;
108 const_reverse_iterator crbegin() const noexcept;
109 const_reverse_iterator crend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000110
111 // capacity:
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000112 bool empty() const noexcept;
113 size_type size() const noexcept;
114 size_type max_size() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000115
116 // element access:
117 mapped_type& operator[](const key_type& k);
118 mapped_type& operator[](key_type&& k);
119
120 mapped_type& at(const key_type& k);
121 const mapped_type& at(const key_type& k) const;
122
123 // modifiers:
124 template <class... Args>
125 pair<iterator, bool> emplace(Args&&... args);
126 template <class... Args>
127 iterator emplace_hint(const_iterator position, Args&&... args);
128 pair<iterator, bool> insert(const value_type& v);
129 template <class P>
130 pair<iterator, bool> insert(P&& p);
131 iterator insert(const_iterator position, const value_type& v);
132 template <class P>
133 iterator insert(const_iterator position, P&& p);
134 template <class InputIterator>
135 void insert(InputIterator first, InputIterator last);
136 void insert(initializer_list<value_type> il);
137
138 iterator erase(const_iterator position);
139 size_type erase(const key_type& k);
140 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000141 void clear() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000142
Howard Hinnant7686add2011-06-04 14:31:57 +0000143 void swap(map& m)
144 noexcept(
145 __is_nothrow_swappable<key_compare>::value &&
146 (!allocator_type::propagate_on_container_swap::value ||
147 __is_nothrow_swappable<allocator_type>::value));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000148
149 // observers:
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000150 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000151 key_compare key_comp() const;
152 value_compare value_comp() const;
153
154 // map operations:
155 iterator find(const key_type& k);
156 const_iterator find(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000157 template<typename K>
158 iterator find(const K& x); // C++14
159 template<typename K>
160 const_iterator find(const K& x) const; // C++14
161 template<typename K>
162 size_type count(const K& x) const;
163
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000164 size_type count(const key_type& k) const;
165 iterator lower_bound(const key_type& k);
166 const_iterator lower_bound(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000167 template<typename K>
168 iterator lower_bound(const K& x); // C++14
169 template<typename K>
170 const_iterator lower_bound(const K& x) const; // C++14
171
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000172 iterator upper_bound(const key_type& k);
173 const_iterator upper_bound(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000174 template<typename K>
175 iterator upper_bound(const K& x); // C++14
176 template<typename K>
177 const_iterator upper_bound(const K& x) const; // C++14
178
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000179 pair<iterator,iterator> equal_range(const key_type& k);
180 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000181 template<typename K>
182 pair<iterator,iterator> equal_range(const K& x); // C++14
183 template<typename K>
184 pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000185};
186
187template <class Key, class T, class Compare, class Allocator>
188bool
189operator==(const map<Key, T, Compare, Allocator>& x,
190 const map<Key, T, Compare, Allocator>& y);
191
192template <class Key, class T, class Compare, class Allocator>
193bool
194operator< (const map<Key, T, Compare, Allocator>& x,
195 const map<Key, T, Compare, Allocator>& y);
196
197template <class Key, class T, class Compare, class Allocator>
198bool
199operator!=(const map<Key, T, Compare, Allocator>& x,
200 const map<Key, T, Compare, Allocator>& y);
201
202template <class Key, class T, class Compare, class Allocator>
203bool
204operator> (const map<Key, T, Compare, Allocator>& x,
205 const map<Key, T, Compare, Allocator>& y);
206
207template <class Key, class T, class Compare, class Allocator>
208bool
209operator>=(const map<Key, T, Compare, Allocator>& x,
210 const map<Key, T, Compare, Allocator>& y);
211
212template <class Key, class T, class Compare, class Allocator>
213bool
214operator<=(const map<Key, T, Compare, Allocator>& x,
215 const map<Key, T, Compare, Allocator>& y);
216
217// specialized algorithms:
218template <class Key, class T, class Compare, class Allocator>
219void
Howard Hinnant7686add2011-06-04 14:31:57 +0000220swap(map<Key, T, Compare, Allocator>& x, map<Key, T, Compare, Allocator>& y)
221 noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000222
223template <class Key, class T, class Compare = less<Key>,
224 class Allocator = allocator<pair<const Key, T>>>
225class multimap
226{
227public:
228 // types:
229 typedef Key key_type;
230 typedef T mapped_type;
231 typedef pair<const key_type,mapped_type> value_type;
232 typedef Compare key_compare;
233 typedef Allocator allocator_type;
234 typedef typename allocator_type::reference reference;
235 typedef typename allocator_type::const_reference const_reference;
236 typedef typename allocator_type::size_type size_type;
237 typedef typename allocator_type::difference_type difference_type;
238 typedef typename allocator_type::pointer pointer;
239 typedef typename allocator_type::const_pointer const_pointer;
240
241 typedef implementation-defined iterator;
242 typedef implementation-defined const_iterator;
243 typedef std::reverse_iterator<iterator> reverse_iterator;
244 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
245
246 class value_compare
247 : public binary_function<value_type,value_type,bool>
248 {
249 friend class multimap;
250 protected:
251 key_compare comp;
252 value_compare(key_compare c);
253 public:
254 bool operator()(const value_type& x, const value_type& y) const;
255 };
256
257 // construct/copy/destroy:
Howard Hinnant7686add2011-06-04 14:31:57 +0000258 multimap()
259 noexcept(
260 is_nothrow_default_constructible<allocator_type>::value &&
261 is_nothrow_default_constructible<key_compare>::value &&
262 is_nothrow_copy_constructible<key_compare>::value);
263 explicit multimap(const key_compare& comp);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000264 multimap(const key_compare& comp, const allocator_type& a);
265 template <class InputIterator>
266 multimap(InputIterator first, InputIterator last, const key_compare& comp);
267 template <class InputIterator>
268 multimap(InputIterator first, InputIterator last, const key_compare& comp,
269 const allocator_type& a);
270 multimap(const multimap& m);
Howard Hinnant7686add2011-06-04 14:31:57 +0000271 multimap(multimap&& m)
272 noexcept(
273 is_nothrow_move_constructible<allocator_type>::value &&
274 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000275 explicit multimap(const allocator_type& a);
276 multimap(const multimap& m, const allocator_type& a);
277 multimap(multimap&& m, const allocator_type& a);
278 multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
279 multimap(initializer_list<value_type> il, const key_compare& comp,
280 const allocator_type& a);
Marshall Clow49d596d2013-09-11 01:15:47 +0000281 template <class InputIterator>
282 multimap(InputIterator first, InputIterator last, const allocator_type& a)
283 : multimap(first, last, Compare(), a) {} // C++14
284 multimap(initializer_list<value_type> il, const allocator_type& a)
285 : multimap(il, Compare(), a) {} // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000286 ~multimap();
287
288 multimap& operator=(const multimap& m);
Howard Hinnant7686add2011-06-04 14:31:57 +0000289 multimap& operator=(multimap&& m)
290 noexcept(
291 allocator_type::propagate_on_container_move_assignment::value &&
292 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000293 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000294 multimap& operator=(initializer_list<value_type> il);
295
296 // iterators:
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000297 iterator begin() noexcept;
298 const_iterator begin() const noexcept;
299 iterator end() noexcept;
300 const_iterator end() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000301
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000302 reverse_iterator rbegin() noexcept;
303 const_reverse_iterator rbegin() const noexcept;
304 reverse_iterator rend() noexcept;
305 const_reverse_iterator rend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000306
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000307 const_iterator cbegin() const noexcept;
308 const_iterator cend() const noexcept;
309 const_reverse_iterator crbegin() const noexcept;
310 const_reverse_iterator crend() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000311
312 // capacity:
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000313 bool empty() const noexcept;
314 size_type size() const noexcept;
315 size_type max_size() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000316
317 // modifiers:
318 template <class... Args>
319 iterator emplace(Args&&... args);
320 template <class... Args>
321 iterator emplace_hint(const_iterator position, Args&&... args);
322 iterator insert(const value_type& v);
323 template <class P>
324 iterator insert(P&& p);
325 iterator insert(const_iterator position, const value_type& v);
326 template <class P>
327 iterator insert(const_iterator position, P&& p);
328 template <class InputIterator>
329 void insert(InputIterator first, InputIterator last);
330 void insert(initializer_list<value_type> il);
331
332 iterator erase(const_iterator position);
333 size_type erase(const key_type& k);
334 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000335 void clear() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000336
Howard Hinnant7686add2011-06-04 14:31:57 +0000337 void swap(multimap& m)
338 noexcept(
339 __is_nothrow_swappable<key_compare>::value &&
340 (!allocator_type::propagate_on_container_swap::value ||
341 __is_nothrow_swappable<allocator_type>::value));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000342
343 // observers:
Howard Hinnantb2e2a8f2011-06-04 15:22:34 +0000344 allocator_type get_allocator() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000345 key_compare key_comp() const;
346 value_compare value_comp() const;
347
348 // map operations:
349 iterator find(const key_type& k);
350 const_iterator find(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000351 template<typename K>
352 iterator find(const K& x); // C++14
353 template<typename K>
354 const_iterator find(const K& x) const; // C++14
355 template<typename K>
356 size_type count(const K& x) const;
357
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000358 size_type count(const key_type& k) const;
359 iterator lower_bound(const key_type& k);
360 const_iterator lower_bound(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000361 template<typename K>
362 iterator lower_bound(const K& x); // C++14
363 template<typename K>
364 const_iterator lower_bound(const K& x) const; // C++14
365
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000366 iterator upper_bound(const key_type& k);
367 const_iterator upper_bound(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000368 template<typename K>
369 iterator upper_bound(const K& x); // C++14
370 template<typename K>
371 const_iterator upper_bound(const K& x) const; // C++14
372
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000373 pair<iterator,iterator> equal_range(const key_type& k);
374 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000375 template<typename K>
376 pair<iterator,iterator> equal_range(const K& x); // C++14
377 template<typename K>
378 pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000379};
380
381template <class Key, class T, class Compare, class Allocator>
382bool
383operator==(const multimap<Key, T, Compare, Allocator>& x,
384 const multimap<Key, T, Compare, Allocator>& y);
385
386template <class Key, class T, class Compare, class Allocator>
387bool
388operator< (const multimap<Key, T, Compare, Allocator>& x,
389 const multimap<Key, T, Compare, Allocator>& y);
390
391template <class Key, class T, class Compare, class Allocator>
392bool
393operator!=(const multimap<Key, T, Compare, Allocator>& x,
394 const multimap<Key, T, Compare, Allocator>& y);
395
396template <class Key, class T, class Compare, class Allocator>
397bool
398operator> (const multimap<Key, T, Compare, Allocator>& x,
399 const multimap<Key, T, Compare, Allocator>& y);
400
401template <class Key, class T, class Compare, class Allocator>
402bool
403operator>=(const multimap<Key, T, Compare, Allocator>& x,
404 const multimap<Key, T, Compare, Allocator>& y);
405
406template <class Key, class T, class Compare, class Allocator>
407bool
408operator<=(const multimap<Key, T, Compare, Allocator>& x,
409 const multimap<Key, T, Compare, Allocator>& y);
410
411// specialized algorithms:
412template <class Key, class T, class Compare, class Allocator>
413void
414swap(multimap<Key, T, Compare, Allocator>& x,
Howard Hinnant7686add2011-06-04 14:31:57 +0000415 multimap<Key, T, Compare, Allocator>& y)
416 noexcept(noexcept(x.swap(y)));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000417
418} // std
419
420*/
421
422#include <__config>
423#include <__tree>
424#include <iterator>
425#include <memory>
426#include <utility>
427#include <functional>
428#include <initializer_list>
429
Howard Hinnant08e17472011-10-17 20:05:10 +0000430#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000431#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000432#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000433
434_LIBCPP_BEGIN_NAMESPACE_STD
435
Howard Hinnant9b128e02013-07-05 18:06:00 +0000436template <class _Key, class _CP, class _Compare, bool = is_empty<_Compare>::value
Howard Hinnantd4cf2152011-12-11 20:31:33 +0000437#if __has_feature(is_final)
438 && !__is_final(_Compare)
439#endif
440 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000441class __map_value_compare
442 : private _Compare
443{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000444public:
Howard Hinnant82894812010-09-22 16:48:34 +0000445 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000446 __map_value_compare()
447 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
448 : _Compare() {}
Howard Hinnant82894812010-09-22 16:48:34 +0000449 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000450 __map_value_compare(_Compare c)
451 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
452 : _Compare(c) {}
Howard Hinnant82894812010-09-22 16:48:34 +0000453 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000454 const _Compare& key_comp() const _NOEXCEPT {return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +0000455 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000456 bool operator()(const _CP& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00 +0000457 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y.__cc.first);}
Howard Hinnant82894812010-09-22 16:48:34 +0000458 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000459 bool operator()(const _CP& __x, const _Key& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00 +0000460 {return static_cast<const _Compare&>(*this)(__x.__cc.first, __y);}
Howard Hinnant82894812010-09-22 16:48:34 +0000461 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000462 bool operator()(const _Key& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00 +0000463 {return static_cast<const _Compare&>(*this)(__x, __y.__cc.first);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000464
465#if _LIBCPP_STD_VER > 11
466 template <typename _K2>
467 _LIBCPP_INLINE_VISIBILITY
468 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
469 operator () ( const _K2& __x, const _CP& __y ) const
470 {return static_cast<const _Compare&>(*this) (__x, __y.__cc.first);}
471
472 template <typename _K2>
473 _LIBCPP_INLINE_VISIBILITY
474 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
475 operator () (const _CP& __x, const _K2& __y) const
476 {return static_cast<const _Compare&>(*this) (__x.__cc.first, __y);}
477#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000478};
479
Howard Hinnant9b128e02013-07-05 18:06:00 +0000480template <class _Key, class _CP, class _Compare>
481class __map_value_compare<_Key, _CP, _Compare, false>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000482{
483 _Compare comp;
484
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000485public:
Howard Hinnant82894812010-09-22 16:48:34 +0000486 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000487 __map_value_compare()
488 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
489 : comp() {}
Howard Hinnant82894812010-09-22 16:48:34 +0000490 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000491 __map_value_compare(_Compare c)
492 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
493 : comp(c) {}
Howard Hinnant82894812010-09-22 16:48:34 +0000494 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000495 const _Compare& key_comp() const _NOEXCEPT {return comp;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000496
Howard Hinnant82894812010-09-22 16:48:34 +0000497 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000498 bool operator()(const _CP& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00 +0000499 {return comp(__x.__cc.first, __y.__cc.first);}
Howard Hinnant82894812010-09-22 16:48:34 +0000500 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000501 bool operator()(const _CP& __x, const _Key& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00 +0000502 {return comp(__x.__cc.first, __y);}
Howard Hinnant82894812010-09-22 16:48:34 +0000503 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000504 bool operator()(const _Key& __x, const _CP& __y) const
Howard Hinnant9b128e02013-07-05 18:06:00 +0000505 {return comp(__x, __y.__cc.first);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +0000506
507#if _LIBCPP_STD_VER > 11
508 template <typename _K2>
509 _LIBCPP_INLINE_VISIBILITY
510 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
511 operator () ( const _K2& __x, const _CP& __y ) const
512 {return comp (__x, __y.__cc.first);}
513
514 template <typename _K2>
515 _LIBCPP_INLINE_VISIBILITY
516 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
517 operator () (const _CP& __x, const _K2& __y) const
518 {return comp (__x.__cc.first, __y);}
519#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000520};
521
522template <class _Allocator>
523class __map_node_destructor
524{
525 typedef _Allocator allocator_type;
526 typedef allocator_traits<allocator_type> __alloc_traits;
527 typedef typename __alloc_traits::value_type::value_type value_type;
528public:
529 typedef typename __alloc_traits::pointer pointer;
530private:
Howard Hinnant70342b92013-06-19 21:29:40 +0000531 typedef typename value_type::value_type::first_type first_type;
532 typedef typename value_type::value_type::second_type second_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000533
534 allocator_type& __na_;
535
536 __map_node_destructor& operator=(const __map_node_destructor&);
537
538public:
539 bool __first_constructed;
540 bool __second_constructed;
541
Howard Hinnant82894812010-09-22 16:48:34 +0000542 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000543 explicit __map_node_destructor(allocator_type& __na) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000544 : __na_(__na),
545 __first_constructed(false),
546 __second_constructed(false)
547 {}
548
Howard Hinnant73d21a42010-09-04 23:28:19 +0000549#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant82894812010-09-22 16:48:34 +0000550 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000551 __map_node_destructor(__tree_node_destructor<allocator_type>&& __x) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000552 : __na_(__x.__na_),
553 __first_constructed(__x.__value_constructed),
554 __second_constructed(__x.__value_constructed)
555 {
556 __x.__value_constructed = false;
557 }
Howard Hinnantbfd55302010-09-04 23:46:48 +0000558#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000559
Howard Hinnant82894812010-09-22 16:48:34 +0000560 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000561 void operator()(pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000562 {
563 if (__second_constructed)
Howard Hinnant70342b92013-06-19 21:29:40 +0000564 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000565 if (__first_constructed)
Howard Hinnant70342b92013-06-19 21:29:40 +0000566 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.first));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000567 if (__p)
568 __alloc_traits::deallocate(__na_, __p, 1);
569 }
570};
571
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000572template <class _Key, class _Tp, class _Compare, class _Allocator>
573 class map;
574template <class _Key, class _Tp, class _Compare, class _Allocator>
575 class multimap;
576template <class _TreeIterator> class __map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000577
Howard Hinnantff7546e2013-09-30 19:08:22 +0000578#if __cplusplus >= 201103L
579
580template <class _Key, class _Tp>
581union __value_type
582{
583 typedef _Key key_type;
584 typedef _Tp mapped_type;
585 typedef pair<const key_type, mapped_type> value_type;
586 typedef pair<key_type, mapped_type> __nc_value_type;
587
588 value_type __cc;
589 __nc_value_type __nc;
590
591 template <class ..._Args>
592 _LIBCPP_INLINE_VISIBILITY
593 __value_type(_Args&& ...__args)
594 : __cc(std::forward<_Args>(__args)...) {}
595
596 _LIBCPP_INLINE_VISIBILITY
597 __value_type(const __value_type& __v)
598 : __cc(__v.__cc) {}
599
600 _LIBCPP_INLINE_VISIBILITY
601 __value_type(__value_type& __v)
602 : __cc(__v.__cc) {}
603
604 _LIBCPP_INLINE_VISIBILITY
605 __value_type(__value_type&& __v)
606 : __nc(std::move(__v.__nc)) {}
607
608 _LIBCPP_INLINE_VISIBILITY
609 __value_type& operator=(const __value_type& __v)
610 {__nc = __v.__cc; return *this;}
611
612 _LIBCPP_INLINE_VISIBILITY
613 __value_type& operator=(__value_type&& __v)
614 {__nc = std::move(__v.__nc); return *this;}
615
616 _LIBCPP_INLINE_VISIBILITY
617 ~__value_type() {__cc.~value_type();}
618};
619
620#else
621
622template <class _Key, class _Tp>
623struct __value_type
624{
625 typedef _Key key_type;
626 typedef _Tp mapped_type;
627 typedef pair<const key_type, mapped_type> value_type;
628
629 value_type __cc;
630
631 _LIBCPP_INLINE_VISIBILITY
632 __value_type() {}
633
634 template <class _A0>
635 _LIBCPP_INLINE_VISIBILITY
636 __value_type(const _A0& __a0)
637 : __cc(__a0) {}
638
639 template <class _A0, class _A1>
640 _LIBCPP_INLINE_VISIBILITY
641 __value_type(const _A0& __a0, const _A1& __a1)
642 : __cc(__a0, __a1) {}
643};
644
645#endif
646
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000647template <class _TreeIterator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000648class _LIBCPP_TYPE_VIS_ONLY __map_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000649{
650 _TreeIterator __i_;
651
652 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
Howard Hinnant70342b92013-06-19 21:29:40 +0000653 typedef const typename _TreeIterator::value_type::value_type::first_type __key_type;
654 typedef typename _TreeIterator::value_type::value_type::second_type __mapped_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000655public:
656 typedef bidirectional_iterator_tag iterator_category;
Howard Hinnantdf85e572011-02-27 18:02:02 +0000657 typedef pair<__key_type, __mapped_type> value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000658 typedef typename _TreeIterator::difference_type difference_type;
659 typedef value_type& reference;
660 typedef typename __pointer_traits::template
661#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
662 rebind<value_type>
663#else
664 rebind<value_type>::other
665#endif
666 pointer;
667
Howard Hinnant82894812010-09-22 16:48:34 +0000668 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000669 __map_iterator() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000670
Howard Hinnant82894812010-09-22 16:48:34 +0000671 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000672 __map_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000673
Howard Hinnant82894812010-09-22 16:48:34 +0000674 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40 +0000675 reference operator*() const {return __i_->__cc;}
Howard Hinnant82894812010-09-22 16:48:34 +0000676 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40 +0000677 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__cc);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000678
Howard Hinnant82894812010-09-22 16:48:34 +0000679 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000680 __map_iterator& operator++() {++__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +0000681 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000682 __map_iterator operator++(int)
683 {
684 __map_iterator __t(*this);
685 ++(*this);
686 return __t;
687 }
688
Howard Hinnant82894812010-09-22 16:48:34 +0000689 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000690 __map_iterator& operator--() {--__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +0000691 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000692 __map_iterator operator--(int)
693 {
694 __map_iterator __t(*this);
695 --(*this);
696 return __t;
697 }
698
Howard Hinnant82894812010-09-22 16:48:34 +0000699 friend _LIBCPP_INLINE_VISIBILITY
700 bool operator==(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000701 {return __x.__i_ == __y.__i_;}
Howard Hinnant82894812010-09-22 16:48:34 +0000702 friend
703 _LIBCPP_INLINE_VISIBILITY
704 bool operator!=(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000705 {return __x.__i_ != __y.__i_;}
706
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000707 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY map;
708 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY multimap;
709 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000710};
711
712template <class _TreeIterator>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000713class _LIBCPP_TYPE_VIS_ONLY __map_const_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000714{
715 _TreeIterator __i_;
716
717 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
Howard Hinnant70342b92013-06-19 21:29:40 +0000718 typedef const typename _TreeIterator::value_type::value_type::first_type __key_type;
719 typedef typename _TreeIterator::value_type::value_type::second_type __mapped_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000720public:
721 typedef bidirectional_iterator_tag iterator_category;
Howard Hinnantdf85e572011-02-27 18:02:02 +0000722 typedef pair<__key_type, __mapped_type> value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000723 typedef typename _TreeIterator::difference_type difference_type;
724 typedef const value_type& reference;
725 typedef typename __pointer_traits::template
726#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnant9dbeff92011-04-11 02:18:41 +0000727 rebind<const value_type>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000728#else
Howard Hinnant9dbeff92011-04-11 02:18:41 +0000729 rebind<const value_type>::other
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000730#endif
731 pointer;
732
Howard Hinnant82894812010-09-22 16:48:34 +0000733 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000734 __map_const_iterator() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000735
Howard Hinnant82894812010-09-22 16:48:34 +0000736 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000737 __map_const_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnant82894812010-09-22 16:48:34 +0000738 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000739 __map_const_iterator(
740 __map_iterator<typename _TreeIterator::__non_const_iterator> __i)
Howard Hinnant7686add2011-06-04 14:31:57 +0000741 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000742 : __i_(__i.__i_) {}
743
Howard Hinnant82894812010-09-22 16:48:34 +0000744 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40 +0000745 reference operator*() const {return __i_->__cc;}
Howard Hinnant82894812010-09-22 16:48:34 +0000746 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant70342b92013-06-19 21:29:40 +0000747 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__cc);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000748
Howard Hinnant82894812010-09-22 16:48:34 +0000749 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000750 __map_const_iterator& operator++() {++__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +0000751 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000752 __map_const_iterator operator++(int)
753 {
754 __map_const_iterator __t(*this);
755 ++(*this);
756 return __t;
757 }
758
Howard Hinnant82894812010-09-22 16:48:34 +0000759 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000760 __map_const_iterator& operator--() {--__i_; return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +0000761 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000762 __map_const_iterator operator--(int)
763 {
764 __map_const_iterator __t(*this);
765 --(*this);
766 return __t;
767 }
768
Howard Hinnant82894812010-09-22 16:48:34 +0000769 friend _LIBCPP_INLINE_VISIBILITY
770 bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000771 {return __x.__i_ == __y.__i_;}
Howard Hinnant82894812010-09-22 16:48:34 +0000772 friend _LIBCPP_INLINE_VISIBILITY
773 bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000774 {return __x.__i_ != __y.__i_;}
775
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000776 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY map;
777 template <class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY multimap;
778 template <class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY __tree_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000779};
780
781template <class _Key, class _Tp, class _Compare = less<_Key>,
782 class _Allocator = allocator<pair<const _Key, _Tp> > >
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000783class _LIBCPP_TYPE_VIS_ONLY map
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000784{
785public:
786 // types:
787 typedef _Key key_type;
788 typedef _Tp mapped_type;
789 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant70342b92013-06-19 21:29:40 +0000790 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000791 typedef _Compare key_compare;
792 typedef _Allocator allocator_type;
793 typedef value_type& reference;
794 typedef const value_type& const_reference;
795
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000796 class _LIBCPP_TYPE_VIS_ONLY value_compare
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000797 : public binary_function<value_type, value_type, bool>
798 {
799 friend class map;
800 protected:
801 key_compare comp;
802
Howard Hinnant82894812010-09-22 16:48:34 +0000803 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000804 public:
Howard Hinnant82894812010-09-22 16:48:34 +0000805 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000806 bool operator()(const value_type& __x, const value_type& __y) const
807 {return comp(__x.first, __y.first);}
808 };
809
810private:
Howard Hinnant70342b92013-06-19 21:29:40 +0000811
Howard Hinnantff7546e2013-09-30 19:08:22 +0000812 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant9b128e02013-07-05 18:06:00 +0000813 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000814 typedef typename allocator_traits<allocator_type>::template
815#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
816 rebind_alloc<__value_type>
817#else
818 rebind_alloc<__value_type>::other
819#endif
820 __allocator_type;
821 typedef __tree<__value_type, __vc, __allocator_type> __base;
822 typedef typename __base::__node_traits __node_traits;
823 typedef allocator_traits<allocator_type> __alloc_traits;
824
825 __base __tree_;
826
827public:
828 typedef typename __alloc_traits::pointer pointer;
829 typedef typename __alloc_traits::const_pointer const_pointer;
830 typedef typename __alloc_traits::size_type size_type;
831 typedef typename __alloc_traits::difference_type difference_type;
832 typedef __map_iterator<typename __base::iterator> iterator;
833 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000834 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
835 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000836
Howard Hinnant82894812010-09-22 16:48:34 +0000837 _LIBCPP_INLINE_VISIBILITY
Marshall Clowcaaa1412014-03-10 04:50:10 +0000838 map()
839 _NOEXCEPT_(
840 is_nothrow_default_constructible<allocator_type>::value &&
841 is_nothrow_default_constructible<key_compare>::value &&
842 is_nothrow_copy_constructible<key_compare>::value)
843 : __tree_(__vc(key_compare())) {}
844
845 _LIBCPP_INLINE_VISIBILITY
846 explicit map(const key_compare& __comp)
Howard Hinnant7686add2011-06-04 14:31:57 +0000847 _NOEXCEPT_(
848 is_nothrow_default_constructible<allocator_type>::value &&
849 is_nothrow_default_constructible<key_compare>::value &&
850 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000851 : __tree_(__vc(__comp)) {}
852
Howard Hinnant82894812010-09-22 16:48:34 +0000853 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000854 explicit map(const key_compare& __comp, const allocator_type& __a)
855 : __tree_(__vc(__comp), __a) {}
856
857 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34 +0000858 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000859 map(_InputIterator __f, _InputIterator __l,
860 const key_compare& __comp = key_compare())
861 : __tree_(__vc(__comp))
862 {
863 insert(__f, __l);
864 }
865
866 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34 +0000867 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000868 map(_InputIterator __f, _InputIterator __l,
869 const key_compare& __comp, const allocator_type& __a)
870 : __tree_(__vc(__comp), __a)
871 {
872 insert(__f, __l);
873 }
874
Marshall Clow49d596d2013-09-11 01:15:47 +0000875#if _LIBCPP_STD_VER > 11
876 template <class _InputIterator>
877 _LIBCPP_INLINE_VISIBILITY
878 map(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
879 : map(__f, __l, key_compare(), __a) {}
880#endif
881
Howard Hinnant82894812010-09-22 16:48:34 +0000882 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000883 map(const map& __m)
884 : __tree_(__m.__tree_)
885 {
886 insert(__m.begin(), __m.end());
887 }
888
Howard Hinnant61aa6012011-07-01 19:24:36 +0000889 _LIBCPP_INLINE_VISIBILITY
890 map& operator=(const map& __m)
891 {
Howard Hinnant70342b92013-06-19 21:29:40 +0000892#if __cplusplus >= 201103L
Howard Hinnant61aa6012011-07-01 19:24:36 +0000893 __tree_ = __m.__tree_;
Howard Hinnant70342b92013-06-19 21:29:40 +0000894#else
Marshall Clowebfc50e2014-02-08 04:03:14 +0000895 if (this != &__m) {
896 __tree_.clear();
897 __tree_.value_comp() = __m.__tree_.value_comp();
898 __tree_.__copy_assign_alloc(__m.__tree_);
899 insert(__m.begin(), __m.end());
900 }
Howard Hinnant70342b92013-06-19 21:29:40 +0000901#endif
Howard Hinnant61aa6012011-07-01 19:24:36 +0000902 return *this;
903 }
904
Howard Hinnant73d21a42010-09-04 23:28:19 +0000905#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000906
Howard Hinnant82894812010-09-22 16:48:34 +0000907 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000908 map(map&& __m)
Howard Hinnant7686add2011-06-04 14:31:57 +0000909 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000910 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000911 {
912 }
913
914 map(map&& __m, const allocator_type& __a);
915
Howard Hinnant82894812010-09-22 16:48:34 +0000916 _LIBCPP_INLINE_VISIBILITY
Howard Hinnante3e32912011-08-12 21:56:02 +0000917 map& operator=(map&& __m)
918 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
919 {
920 __tree_ = _VSTD::move(__m.__tree_);
921 return *this;
922 }
923
924#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
925
926#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
927
928 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000929 map(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
930 : __tree_(__vc(__comp))
931 {
932 insert(__il.begin(), __il.end());
933 }
934
Howard Hinnant82894812010-09-22 16:48:34 +0000935 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000936 map(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
937 : __tree_(__vc(__comp), __a)
938 {
939 insert(__il.begin(), __il.end());
940 }
941
Marshall Clow49d596d2013-09-11 01:15:47 +0000942#if _LIBCPP_STD_VER > 11
943 _LIBCPP_INLINE_VISIBILITY
944 map(initializer_list<value_type> __il, const allocator_type& __a)
945 : map(__il, key_compare(), __a) {}
946#endif
947
Howard Hinnant82894812010-09-22 16:48:34 +0000948 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000949 map& operator=(initializer_list<value_type> __il)
950 {
951 __tree_.__assign_unique(__il.begin(), __il.end());
952 return *this;
953 }
954
Howard Hinnante3e32912011-08-12 21:56:02 +0000955#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000956
Howard Hinnant82894812010-09-22 16:48:34 +0000957 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000958 explicit map(const allocator_type& __a)
959 : __tree_(__a)
960 {
961 }
962
Howard Hinnant82894812010-09-22 16:48:34 +0000963 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000964 map(const map& __m, const allocator_type& __a)
965 : __tree_(__m.__tree_.value_comp(), __a)
966 {
967 insert(__m.begin(), __m.end());
968 }
969
Howard Hinnant82894812010-09-22 16:48:34 +0000970 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000971 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:34 +0000972 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000973 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:34 +0000974 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000975 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant82894812010-09-22 16:48:34 +0000976 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000977 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000978
Howard Hinnant82894812010-09-22 16:48:34 +0000979 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000980 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:34 +0000981 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000982 const_reverse_iterator rbegin() const _NOEXCEPT
983 {return const_reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:34 +0000984 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000985 reverse_iterator rend() _NOEXCEPT
986 {return reverse_iterator(begin());}
Howard Hinnant82894812010-09-22 16:48:34 +0000987 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000988 const_reverse_iterator rend() const _NOEXCEPT
989 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000990
Howard Hinnant82894812010-09-22 16:48:34 +0000991 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000992 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant82894812010-09-22 16:48:34 +0000993 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000994 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant82894812010-09-22 16:48:34 +0000995 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000996 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant82894812010-09-22 16:48:34 +0000997 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +0000998 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000999
Howard Hinnant82894812010-09-22 16:48:34 +00001000 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001001 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00001002 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001003 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant82894812010-09-22 16:48:34 +00001004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001005 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001006
1007 mapped_type& operator[](const key_type& __k);
Howard Hinnant73d21a42010-09-04 23:28:19 +00001008#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001009 mapped_type& operator[](key_type&& __k);
1010#endif
1011
1012 mapped_type& at(const key_type& __k);
1013 const mapped_type& at(const key_type& __k) const;
1014
Howard Hinnant82894812010-09-22 16:48:34 +00001015 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001016 allocator_type get_allocator() const _NOEXCEPT {return __tree_.__alloc();}
Howard Hinnant82894812010-09-22 16:48:34 +00001017 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001018 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant82894812010-09-22 16:48:34 +00001019 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001020 value_compare value_comp() const {return value_compare(__tree_.value_comp().key_comp());}
1021
Howard Hinnant73d21a42010-09-04 23:28:19 +00001022#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant73d21a42010-09-04 23:28:19 +00001023#ifndef _LIBCPP_HAS_NO_VARIADICS
1024
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001025 template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001026 pair<iterator, bool>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001027 emplace(_Args&& ...__args);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001028
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001029 template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001030 iterator
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001031 emplace_hint(const_iterator __p, _Args&& ...__args);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001032
Howard Hinnant73d21a42010-09-04 23:28:19 +00001033#endif // _LIBCPP_HAS_NO_VARIADICS
1034
Howard Hinnant99968442011-11-29 18:15:50 +00001035 template <class _Pp,
1036 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:34 +00001037 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001038 pair<iterator, bool> insert(_Pp&& __p)
1039 {return __tree_.__insert_unique(_VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001040
Howard Hinnant99968442011-11-29 18:15:50 +00001041 template <class _Pp,
1042 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:34 +00001043 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001044 iterator insert(const_iterator __pos, _Pp&& __p)
1045 {return __tree_.__insert_unique(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001046
Howard Hinnant73d21a42010-09-04 23:28:19 +00001047#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001048
Howard Hinnant82894812010-09-22 16:48:34 +00001049 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001050 pair<iterator, bool>
1051 insert(const value_type& __v) {return __tree_.__insert_unique(__v);}
1052
Howard Hinnant82894812010-09-22 16:48:34 +00001053 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001054 iterator
1055 insert(const_iterator __p, const value_type& __v)
1056 {return __tree_.__insert_unique(__p.__i_, __v);}
1057
1058 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34 +00001059 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001060 void insert(_InputIterator __f, _InputIterator __l)
1061 {
1062 for (const_iterator __e = cend(); __f != __l; ++__f)
1063 insert(__e.__i_, *__f);
1064 }
1065
Howard Hinnante3e32912011-08-12 21:56:02 +00001066#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1067
Howard Hinnant82894812010-09-22 16:48:34 +00001068 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001069 void insert(initializer_list<value_type> __il)
1070 {insert(__il.begin(), __il.end());}
1071
Howard Hinnante3e32912011-08-12 21:56:02 +00001072#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1073
Howard Hinnant82894812010-09-22 16:48:34 +00001074 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001075 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant82894812010-09-22 16:48:34 +00001076 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001077 size_type erase(const key_type& __k)
1078 {return __tree_.__erase_unique(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001079 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001080 iterator erase(const_iterator __f, const_iterator __l)
1081 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant82894812010-09-22 16:48:34 +00001082 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001083 void clear() _NOEXCEPT {__tree_.clear();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001084
Howard Hinnant82894812010-09-22 16:48:34 +00001085 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001086 void swap(map& __m)
1087 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1088 {__tree_.swap(__m.__tree_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001089
Howard Hinnant82894812010-09-22 16:48:34 +00001090 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001091 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001092 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001093 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001094#if _LIBCPP_STD_VER > 11
1095 template <typename _K2>
1096 _LIBCPP_INLINE_VISIBILITY
1097 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1098 find(const _K2& __k) {return __tree_.find(__k);}
1099 template <typename _K2>
1100 _LIBCPP_INLINE_VISIBILITY
1101 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1102 find(const _K2& __k) const {return __tree_.find(__k);}
1103#endif
1104
Howard Hinnant82894812010-09-22 16:48:34 +00001105 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001106 size_type count(const key_type& __k) const
1107 {return __tree_.__count_unique(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001108 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001109 iterator lower_bound(const key_type& __k)
1110 {return __tree_.lower_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001111 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001112 const_iterator lower_bound(const key_type& __k) const
1113 {return __tree_.lower_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001114#if _LIBCPP_STD_VER > 11
1115 template <typename _K2>
1116 _LIBCPP_INLINE_VISIBILITY
1117 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1118 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1119
1120 template <typename _K2>
1121 _LIBCPP_INLINE_VISIBILITY
1122 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1123 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1124#endif
1125
Howard Hinnant82894812010-09-22 16:48:34 +00001126 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001127 iterator upper_bound(const key_type& __k)
1128 {return __tree_.upper_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001129 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001130 const_iterator upper_bound(const key_type& __k) const
1131 {return __tree_.upper_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001132#if _LIBCPP_STD_VER > 11
1133 template <typename _K2>
1134 _LIBCPP_INLINE_VISIBILITY
1135 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1136 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
1137 template <typename _K2>
1138 _LIBCPP_INLINE_VISIBILITY
1139 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1140 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
1141#endif
1142
Howard Hinnant82894812010-09-22 16:48:34 +00001143 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001144 pair<iterator,iterator> equal_range(const key_type& __k)
1145 {return __tree_.__equal_range_unique(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001146 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001147 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
1148 {return __tree_.__equal_range_unique(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001149#if _LIBCPP_STD_VER > 11
1150 template <typename _K2>
1151 _LIBCPP_INLINE_VISIBILITY
1152 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
1153 equal_range(const _K2& __k) {return __tree_.__equal_range_unique(__k);}
1154 template <typename _K2>
1155 _LIBCPP_INLINE_VISIBILITY
1156 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
1157 equal_range(const _K2& __k) const {return __tree_.__equal_range_unique(__k);}
1158#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001159
1160private:
1161 typedef typename __base::__node __node;
1162 typedef typename __base::__node_allocator __node_allocator;
1163 typedef typename __base::__node_pointer __node_pointer;
1164 typedef typename __base::__node_const_pointer __node_const_pointer;
1165 typedef typename __base::__node_base_pointer __node_base_pointer;
1166 typedef typename __base::__node_base_const_pointer __node_base_const_pointer;
Howard Hinnant99968442011-11-29 18:15:50 +00001167 typedef __map_node_destructor<__node_allocator> _Dp;
1168 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001169
Howard Hinnant73d21a42010-09-04 23:28:19 +00001170#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001171 __node_holder __construct_node();
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001172 template <class _A0>
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001173 __node_holder __construct_node(_A0&& __a0);
1174 __node_holder __construct_node_with_key(key_type&& __k);
Howard Hinnant73d21a42010-09-04 23:28:19 +00001175#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001176 template <class _A0, class _A1, class ..._Args>
1177 __node_holder __construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args);
Howard Hinnant73d21a42010-09-04 23:28:19 +00001178#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001179#endif
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001180 __node_holder __construct_node_with_key(const key_type& __k);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001181
1182 __node_base_pointer&
1183 __find_equal_key(__node_base_pointer& __parent, const key_type& __k);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001184 __node_base_const_pointer
1185 __find_equal_key(__node_base_const_pointer& __parent, const key_type& __k) const;
1186};
1187
1188// Find place to insert if __k doesn't exist
1189// Set __parent to parent of null leaf
1190// Return reference to null leaf
1191// If __k exists, set parent to node of __k and return reference to node of __k
1192template <class _Key, class _Tp, class _Compare, class _Allocator>
1193typename map<_Key, _Tp, _Compare, _Allocator>::__node_base_pointer&
1194map<_Key, _Tp, _Compare, _Allocator>::__find_equal_key(__node_base_pointer& __parent,
1195 const key_type& __k)
1196{
1197 __node_pointer __nd = __tree_.__root();
1198 if (__nd != nullptr)
1199 {
1200 while (true)
1201 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001202 if (__tree_.value_comp().key_comp()(__k, __nd->__value_.__cc.first))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001203 {
1204 if (__nd->__left_ != nullptr)
1205 __nd = static_cast<__node_pointer>(__nd->__left_);
1206 else
1207 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001208 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001209 return __parent->__left_;
1210 }
1211 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001212 else if (__tree_.value_comp().key_comp()(__nd->__value_.__cc.first, __k))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001213 {
1214 if (__nd->__right_ != nullptr)
1215 __nd = static_cast<__node_pointer>(__nd->__right_);
1216 else
1217 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001218 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001219 return __parent->__right_;
1220 }
1221 }
1222 else
1223 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001224 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001225 return __parent;
1226 }
1227 }
1228 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001229 __parent = static_cast<__node_base_pointer>(__tree_.__end_node());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001230 return __parent->__left_;
1231}
1232
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001233// Find __k
1234// Set __parent to parent of null leaf and
1235// return reference to null leaf iv __k does not exist.
1236// If __k exists, set parent to node of __k and return reference to node of __k
1237template <class _Key, class _Tp, class _Compare, class _Allocator>
1238typename map<_Key, _Tp, _Compare, _Allocator>::__node_base_const_pointer
1239map<_Key, _Tp, _Compare, _Allocator>::__find_equal_key(__node_base_const_pointer& __parent,
1240 const key_type& __k) const
1241{
1242 __node_const_pointer __nd = __tree_.__root();
1243 if (__nd != nullptr)
1244 {
1245 while (true)
1246 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001247 if (__tree_.value_comp().key_comp()(__k, __nd->__value_.__cc.first))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001248 {
1249 if (__nd->__left_ != nullptr)
1250 __nd = static_cast<__node_pointer>(__nd->__left_);
1251 else
1252 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001253 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001254 return const_cast<const __node_base_const_pointer&>(__parent->__left_);
1255 }
1256 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001257 else if (__tree_.value_comp().key_comp()(__nd->__value_.__cc.first, __k))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001258 {
1259 if (__nd->__right_ != nullptr)
1260 __nd = static_cast<__node_pointer>(__nd->__right_);
1261 else
1262 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001263 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001264 return const_cast<const __node_base_const_pointer&>(__parent->__right_);
1265 }
1266 }
1267 else
1268 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001269 __parent = static_cast<__node_base_pointer>(__nd);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001270 return __parent;
1271 }
1272 }
1273 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001274 __parent = static_cast<__node_base_pointer>(__tree_.__end_node());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001275 return const_cast<const __node_base_const_pointer&>(__parent->__left_);
1276}
1277
Howard Hinnant73d21a42010-09-04 23:28:19 +00001278#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001279
1280template <class _Key, class _Tp, class _Compare, class _Allocator>
1281map<_Key, _Tp, _Compare, _Allocator>::map(map&& __m, const allocator_type& __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001282 : __tree_(_VSTD::move(__m.__tree_), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001283{
1284 if (__a != __m.get_allocator())
1285 {
1286 const_iterator __e = cend();
1287 while (!__m.empty())
1288 __tree_.__insert_unique(__e.__i_,
Howard Hinnant0949eed2011-06-30 21:18:19 +00001289 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001290 }
1291}
1292
1293template <class _Key, class _Tp, class _Compare, class _Allocator>
1294typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1295map<_Key, _Tp, _Compare, _Allocator>::__construct_node()
1296{
1297 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00001298 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant70342b92013-06-19 21:29:40 +00001299 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001300 __h.get_deleter().__first_constructed = true;
Howard Hinnant70342b92013-06-19 21:29:40 +00001301 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001302 __h.get_deleter().__second_constructed = true;
1303 return __h;
1304}
1305
1306template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001307template <class _A0>
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001308typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001309map<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0)
1310{
1311 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00001312 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant0949eed2011-06-30 21:18:19 +00001313 __node_traits::construct(__na, _VSTD::addressof(__h->__value_), _VSTD::forward<_A0>(__a0));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001314 __h.get_deleter().__first_constructed = true;
1315 __h.get_deleter().__second_constructed = true;
1316 return __h;
1317}
1318
1319template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001320typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1321map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(key_type&& __k)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001322{
1323 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00001324 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001325 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), _VSTD::move(__k));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001326 __h.get_deleter().__first_constructed = true;
Howard Hinnant70342b92013-06-19 21:29:40 +00001327 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001328 __h.get_deleter().__second_constructed = true;
Howard Hinnant9a894d92013-08-22 18:29:50 +00001329 return __h;
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001330}
1331
1332#ifndef _LIBCPP_HAS_NO_VARIADICS
1333
1334template <class _Key, class _Tp, class _Compare, class _Allocator>
1335template <class _A0, class _A1, class ..._Args>
1336typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
1337map<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args)
1338{
1339 __node_allocator& __na = __tree_.__node_alloc();
1340 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
1341 __node_traits::construct(__na, _VSTD::addressof(__h->__value_),
1342 _VSTD::forward<_A0>(__a0), _VSTD::forward<_A1>(__a1),
1343 _VSTD::forward<_Args>(__args)...);
1344 __h.get_deleter().__first_constructed = true;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001345 __h.get_deleter().__second_constructed = true;
1346 return __h;
1347}
1348
Howard Hinnant73d21a42010-09-04 23:28:19 +00001349#endif // _LIBCPP_HAS_NO_VARIADICS
1350
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001351#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001352
1353template <class _Key, class _Tp, class _Compare, class _Allocator>
1354typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001355map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(const key_type& __k)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001356{
1357 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00001358 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant70342b92013-06-19 21:29:40 +00001359 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first), __k);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001360 __h.get_deleter().__first_constructed = true;
Howard Hinnant70342b92013-06-19 21:29:40 +00001361 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001362 __h.get_deleter().__second_constructed = true;
Howard Hinnant9a894d92013-08-22 18:29:50 +00001363 return _VSTD::move(__h); // explicitly moved for C++03
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001364}
1365
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001366template <class _Key, class _Tp, class _Compare, class _Allocator>
1367_Tp&
1368map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1369{
1370 __node_base_pointer __parent;
1371 __node_base_pointer& __child = __find_equal_key(__parent, __k);
1372 __node_pointer __r = static_cast<__node_pointer>(__child);
1373 if (__child == nullptr)
1374 {
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001375 __node_holder __h = __construct_node_with_key(__k);
Howard Hinnant70342b92013-06-19 21:29:40 +00001376 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001377 __r = __h.release();
1378 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001379 return __r->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001380}
1381
Howard Hinnant73d21a42010-09-04 23:28:19 +00001382#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001383
1384template <class _Key, class _Tp, class _Compare, class _Allocator>
1385_Tp&
1386map<_Key, _Tp, _Compare, _Allocator>::operator[](key_type&& __k)
1387{
1388 __node_base_pointer __parent;
1389 __node_base_pointer& __child = __find_equal_key(__parent, __k);
1390 __node_pointer __r = static_cast<__node_pointer>(__child);
1391 if (__child == nullptr)
1392 {
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001393 __node_holder __h = __construct_node_with_key(_VSTD::move(__k));
Howard Hinnant70342b92013-06-19 21:29:40 +00001394 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001395 __r = __h.release();
1396 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001397 return __r->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001398}
1399
Howard Hinnant73d21a42010-09-04 23:28:19 +00001400#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001401
1402template <class _Key, class _Tp, class _Compare, class _Allocator>
1403_Tp&
1404map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k)
1405{
1406 __node_base_pointer __parent;
1407 __node_base_pointer& __child = __find_equal_key(__parent, __k);
Howard Hinnantd4444702010-08-11 17:04:31 +00001408#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001409 if (__child == nullptr)
1410 throw out_of_range("map::at: key not found");
Howard Hinnant324bb032010-08-22 00:02:43 +00001411#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant70342b92013-06-19 21:29:40 +00001412 return static_cast<__node_pointer>(__child)->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001413}
1414
1415template <class _Key, class _Tp, class _Compare, class _Allocator>
1416const _Tp&
1417map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) const
1418{
1419 __node_base_const_pointer __parent;
1420 __node_base_const_pointer __child = __find_equal_key(__parent, __k);
Howard Hinnantd4444702010-08-11 17:04:31 +00001421#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001422 if (__child == nullptr)
1423 throw out_of_range("map::at: key not found");
Howard Hinnant324bb032010-08-22 00:02:43 +00001424#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant70342b92013-06-19 21:29:40 +00001425 return static_cast<__node_const_pointer>(__child)->__value_.__cc.second;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001426}
1427
Howard Hinnant73d21a42010-09-04 23:28:19 +00001428#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001429
1430template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001431template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001432pair<typename map<_Key, _Tp, _Compare, _Allocator>::iterator, bool>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001433map<_Key, _Tp, _Compare, _Allocator>::emplace(_Args&& ...__args)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001434{
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001435 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001436 pair<iterator, bool> __r = __tree_.__node_insert_unique(__h.get());
1437 if (__r.second)
1438 __h.release();
1439 return __r;
1440}
1441
1442template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001443template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001444typename map<_Key, _Tp, _Compare, _Allocator>::iterator
1445map<_Key, _Tp, _Compare, _Allocator>::emplace_hint(const_iterator __p,
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001446 _Args&& ...__args)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001447{
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001448 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001449 iterator __r = __tree_.__node_insert_unique(__p.__i_, __h.get());
1450 if (__r.__i_.__ptr_ == __h.get())
1451 __h.release();
1452 return __r;
1453}
1454
Howard Hinnant73d21a42010-09-04 23:28:19 +00001455#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001456
1457template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001458inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001459bool
1460operator==(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1461 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1462{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001463 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001464}
1465
1466template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001467inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001468bool
1469operator< (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1470 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1471{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001472 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001473}
1474
1475template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001476inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001477bool
1478operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1479 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1480{
1481 return !(__x == __y);
1482}
1483
1484template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001485inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001486bool
1487operator> (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1488 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1489{
1490 return __y < __x;
1491}
1492
1493template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001494inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001495bool
1496operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1497 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1498{
1499 return !(__x < __y);
1500}
1501
1502template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001503inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001504bool
1505operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1506 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1507{
1508 return !(__y < __x);
1509}
1510
1511template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00001512inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001513void
1514swap(map<_Key, _Tp, _Compare, _Allocator>& __x,
1515 map<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant7686add2011-06-04 14:31:57 +00001516 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001517{
1518 __x.swap(__y);
1519}
1520
1521template <class _Key, class _Tp, class _Compare = less<_Key>,
1522 class _Allocator = allocator<pair<const _Key, _Tp> > >
Howard Hinnant0f678bd2013-08-12 18:38:34 +00001523class _LIBCPP_TYPE_VIS_ONLY multimap
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001524{
1525public:
1526 // types:
1527 typedef _Key key_type;
1528 typedef _Tp mapped_type;
1529 typedef pair<const key_type, mapped_type> value_type;
Howard Hinnant70342b92013-06-19 21:29:40 +00001530 typedef pair<key_type, mapped_type> __nc_value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001531 typedef _Compare key_compare;
1532 typedef _Allocator allocator_type;
1533 typedef value_type& reference;
1534 typedef const value_type& const_reference;
1535
Howard Hinnant0f678bd2013-08-12 18:38:34 +00001536 class _LIBCPP_TYPE_VIS_ONLY value_compare
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001537 : public binary_function<value_type, value_type, bool>
1538 {
1539 friend class multimap;
1540 protected:
1541 key_compare comp;
1542
Howard Hinnant82894812010-09-22 16:48:34 +00001543 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001544 value_compare(key_compare c) : comp(c) {}
1545 public:
Howard Hinnant82894812010-09-22 16:48:34 +00001546 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001547 bool operator()(const value_type& __x, const value_type& __y) const
1548 {return comp(__x.first, __y.first);}
1549 };
1550
1551private:
Howard Hinnant70342b92013-06-19 21:29:40 +00001552
Howard Hinnantff7546e2013-09-30 19:08:22 +00001553 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant9b128e02013-07-05 18:06:00 +00001554 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001555 typedef typename allocator_traits<allocator_type>::template
1556#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1557 rebind_alloc<__value_type>
1558#else
1559 rebind_alloc<__value_type>::other
1560#endif
1561 __allocator_type;
1562 typedef __tree<__value_type, __vc, __allocator_type> __base;
1563 typedef typename __base::__node_traits __node_traits;
1564 typedef allocator_traits<allocator_type> __alloc_traits;
1565
1566 __base __tree_;
1567
1568public:
1569 typedef typename __alloc_traits::pointer pointer;
1570 typedef typename __alloc_traits::const_pointer const_pointer;
1571 typedef typename __alloc_traits::size_type size_type;
1572 typedef typename __alloc_traits::difference_type difference_type;
1573 typedef __map_iterator<typename __base::iterator> iterator;
1574 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnant0949eed2011-06-30 21:18:19 +00001575 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
1576 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001577
Howard Hinnant82894812010-09-22 16:48:34 +00001578 _LIBCPP_INLINE_VISIBILITY
Marshall Clowcaaa1412014-03-10 04:50:10 +00001579 multimap()
1580 _NOEXCEPT_(
1581 is_nothrow_default_constructible<allocator_type>::value &&
1582 is_nothrow_default_constructible<key_compare>::value &&
1583 is_nothrow_copy_constructible<key_compare>::value)
1584 : __tree_(__vc(key_compare())) {}
1585
1586 _LIBCPP_INLINE_VISIBILITY
1587 explicit multimap(const key_compare& __comp)
Howard Hinnant7686add2011-06-04 14:31:57 +00001588 _NOEXCEPT_(
1589 is_nothrow_default_constructible<allocator_type>::value &&
1590 is_nothrow_default_constructible<key_compare>::value &&
1591 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001592 : __tree_(__vc(__comp)) {}
1593
Howard Hinnant82894812010-09-22 16:48:34 +00001594 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001595 explicit multimap(const key_compare& __comp, const allocator_type& __a)
1596 : __tree_(__vc(__comp), __a) {}
1597
1598 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34 +00001599 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001600 multimap(_InputIterator __f, _InputIterator __l,
1601 const key_compare& __comp = key_compare())
1602 : __tree_(__vc(__comp))
1603 {
1604 insert(__f, __l);
1605 }
1606
1607 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34 +00001608 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001609 multimap(_InputIterator __f, _InputIterator __l,
1610 const key_compare& __comp, const allocator_type& __a)
1611 : __tree_(__vc(__comp), __a)
1612 {
1613 insert(__f, __l);
1614 }
1615
Marshall Clow49d596d2013-09-11 01:15:47 +00001616#if _LIBCPP_STD_VER > 11
1617 template <class _InputIterator>
1618 _LIBCPP_INLINE_VISIBILITY
1619 multimap(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
1620 : multimap(__f, __l, key_compare(), __a) {}
1621#endif
1622
Howard Hinnant82894812010-09-22 16:48:34 +00001623 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001624 multimap(const multimap& __m)
1625 : __tree_(__m.__tree_.value_comp(),
1626 __alloc_traits::select_on_container_copy_construction(__m.__tree_.__alloc()))
1627 {
1628 insert(__m.begin(), __m.end());
1629 }
1630
Howard Hinnant61aa6012011-07-01 19:24:36 +00001631 _LIBCPP_INLINE_VISIBILITY
1632 multimap& operator=(const multimap& __m)
1633 {
Howard Hinnant70342b92013-06-19 21:29:40 +00001634#if __cplusplus >= 201103L
Howard Hinnant61aa6012011-07-01 19:24:36 +00001635 __tree_ = __m.__tree_;
Howard Hinnant70342b92013-06-19 21:29:40 +00001636#else
Marshall Clowebfc50e2014-02-08 04:03:14 +00001637 if (this != &__m) {
1638 __tree_.clear();
1639 __tree_.value_comp() = __m.__tree_.value_comp();
1640 __tree_.__copy_assign_alloc(__m.__tree_);
1641 insert(__m.begin(), __m.end());
1642 }
Howard Hinnant70342b92013-06-19 21:29:40 +00001643#endif
Howard Hinnant61aa6012011-07-01 19:24:36 +00001644 return *this;
1645 }
1646
Howard Hinnant73d21a42010-09-04 23:28:19 +00001647#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001648
Howard Hinnant82894812010-09-22 16:48:34 +00001649 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001650 multimap(multimap&& __m)
Howard Hinnant7686add2011-06-04 14:31:57 +00001651 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001652 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001653 {
1654 }
1655
1656 multimap(multimap&& __m, const allocator_type& __a);
1657
Howard Hinnant82894812010-09-22 16:48:34 +00001658 _LIBCPP_INLINE_VISIBILITY
Howard Hinnante3e32912011-08-12 21:56:02 +00001659 multimap& operator=(multimap&& __m)
1660 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1661 {
1662 __tree_ = _VSTD::move(__m.__tree_);
1663 return *this;
1664 }
1665
1666#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
1667
1668#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1669
1670 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001671 multimap(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
1672 : __tree_(__vc(__comp))
1673 {
1674 insert(__il.begin(), __il.end());
1675 }
1676
Howard Hinnant82894812010-09-22 16:48:34 +00001677 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001678 multimap(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
1679 : __tree_(__vc(__comp), __a)
1680 {
1681 insert(__il.begin(), __il.end());
1682 }
1683
Marshall Clow49d596d2013-09-11 01:15:47 +00001684#if _LIBCPP_STD_VER > 11
1685 _LIBCPP_INLINE_VISIBILITY
1686 multimap(initializer_list<value_type> __il, const allocator_type& __a)
1687 : multimap(__il, key_compare(), __a) {}
1688#endif
1689
Howard Hinnant82894812010-09-22 16:48:34 +00001690 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001691 multimap& operator=(initializer_list<value_type> __il)
1692 {
1693 __tree_.__assign_multi(__il.begin(), __il.end());
1694 return *this;
1695 }
Howard Hinnante3e32912011-08-12 21:56:02 +00001696
1697#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001698
Howard Hinnant82894812010-09-22 16:48:34 +00001699 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001700 explicit multimap(const allocator_type& __a)
1701 : __tree_(__a)
1702 {
1703 }
1704
Howard Hinnant82894812010-09-22 16:48:34 +00001705 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001706 multimap(const multimap& __m, const allocator_type& __a)
1707 : __tree_(__m.__tree_.value_comp(), __a)
1708 {
1709 insert(__m.begin(), __m.end());
1710 }
1711
Howard Hinnant82894812010-09-22 16:48:34 +00001712 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001713 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:34 +00001714 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001715 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant82894812010-09-22 16:48:34 +00001716 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001717 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant82894812010-09-22 16:48:34 +00001718 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001719 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001720
Howard Hinnant82894812010-09-22 16:48:34 +00001721 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001722 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:34 +00001723 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001724 const_reverse_iterator rbegin() const _NOEXCEPT
1725 {return const_reverse_iterator(end());}
Howard Hinnant82894812010-09-22 16:48:34 +00001726 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001727 reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
Howard Hinnant82894812010-09-22 16:48:34 +00001728 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001729 const_reverse_iterator rend() const _NOEXCEPT
1730 {return const_reverse_iterator(begin());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001731
Howard Hinnant82894812010-09-22 16:48:34 +00001732 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001733 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant82894812010-09-22 16:48:34 +00001734 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001735 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant82894812010-09-22 16:48:34 +00001736 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001737 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant82894812010-09-22 16:48:34 +00001738 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001739 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001740
Howard Hinnant82894812010-09-22 16:48:34 +00001741 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001742 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00001743 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001744 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant82894812010-09-22 16:48:34 +00001745 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001746 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001747
Howard Hinnant82894812010-09-22 16:48:34 +00001748 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001749 allocator_type get_allocator() const _NOEXCEPT {return __tree_.__alloc();}
Howard Hinnant82894812010-09-22 16:48:34 +00001750 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001751 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant82894812010-09-22 16:48:34 +00001752 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001753 value_compare value_comp() const
1754 {return value_compare(__tree_.value_comp().key_comp());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001755
Howard Hinnant73d21a42010-09-04 23:28:19 +00001756#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant73d21a42010-09-04 23:28:19 +00001757#ifndef _LIBCPP_HAS_NO_VARIADICS
1758
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001759 template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001760 iterator
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001761 emplace(_Args&& ...__args);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001762
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001763 template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001764 iterator
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001765 emplace_hint(const_iterator __p, _Args&& ...__args);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001766
Howard Hinnant73d21a42010-09-04 23:28:19 +00001767#endif // _LIBCPP_HAS_NO_VARIADICS
1768
Howard Hinnant99968442011-11-29 18:15:50 +00001769 template <class _Pp,
1770 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:34 +00001771 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001772 iterator insert(_Pp&& __p)
1773 {return __tree_.__insert_multi(_VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001774
Howard Hinnant99968442011-11-29 18:15:50 +00001775 template <class _Pp,
1776 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant82894812010-09-22 16:48:34 +00001777 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001778 iterator insert(const_iterator __pos, _Pp&& __p)
1779 {return __tree_.__insert_multi(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001780
Howard Hinnant73d21a42010-09-04 23:28:19 +00001781#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001782
Howard Hinnant82894812010-09-22 16:48:34 +00001783 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001784 iterator insert(const value_type& __v) {return __tree_.__insert_multi(__v);}
1785
Howard Hinnant82894812010-09-22 16:48:34 +00001786 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001787 iterator insert(const_iterator __p, const value_type& __v)
1788 {return __tree_.__insert_multi(__p.__i_, __v);}
1789
1790 template <class _InputIterator>
Howard Hinnant82894812010-09-22 16:48:34 +00001791 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001792 void insert(_InputIterator __f, _InputIterator __l)
1793 {
1794 for (const_iterator __e = cend(); __f != __l; ++__f)
1795 __tree_.__insert_multi(__e.__i_, *__f);
1796 }
1797
Howard Hinnante3e32912011-08-12 21:56:02 +00001798#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1799
Howard Hinnant82894812010-09-22 16:48:34 +00001800 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001801 void insert(initializer_list<value_type> __il)
1802 {insert(__il.begin(), __il.end());}
1803
Howard Hinnante3e32912011-08-12 21:56:02 +00001804#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
1805
Howard Hinnant82894812010-09-22 16:48:34 +00001806 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001807 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant82894812010-09-22 16:48:34 +00001808 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001809 size_type erase(const key_type& __k) {return __tree_.__erase_multi(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001810 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001811 iterator erase(const_iterator __f, const_iterator __l)
1812 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant82894812010-09-22 16:48:34 +00001813 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001814 void clear() {__tree_.clear();}
1815
Howard Hinnant82894812010-09-22 16:48:34 +00001816 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant7686add2011-06-04 14:31:57 +00001817 void swap(multimap& __m)
1818 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1819 {__tree_.swap(__m.__tree_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001820
Howard Hinnant82894812010-09-22 16:48:34 +00001821 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001822 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001823 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001824 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001825#if _LIBCPP_STD_VER > 11
1826 template <typename _K2>
1827 _LIBCPP_INLINE_VISIBILITY
1828 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1829 find(const _K2& __k) {return __tree_.find(__k);}
1830 template <typename _K2>
1831 _LIBCPP_INLINE_VISIBILITY
1832 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1833 find(const _K2& __k) const {return __tree_.find(__k);}
1834#endif
1835
Howard Hinnant82894812010-09-22 16:48:34 +00001836 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001837 size_type count(const key_type& __k) const
1838 {return __tree_.__count_multi(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001839 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001840 iterator lower_bound(const key_type& __k)
1841 {return __tree_.lower_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001842 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001843 const_iterator lower_bound(const key_type& __k) const
1844 {return __tree_.lower_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001845#if _LIBCPP_STD_VER > 11
1846 template <typename _K2>
1847 _LIBCPP_INLINE_VISIBILITY
1848 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1849 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1850
1851 template <typename _K2>
1852 _LIBCPP_INLINE_VISIBILITY
1853 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1854 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1855#endif
1856
Howard Hinnant82894812010-09-22 16:48:34 +00001857 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001858 iterator upper_bound(const key_type& __k)
1859 {return __tree_.upper_bound(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001860 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001861 const_iterator upper_bound(const key_type& __k) const
1862 {return __tree_.upper_bound(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001863#if _LIBCPP_STD_VER > 11
1864 template <typename _K2>
1865 _LIBCPP_INLINE_VISIBILITY
1866 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1867 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
1868 template <typename _K2>
1869 _LIBCPP_INLINE_VISIBILITY
1870 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1871 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
1872#endif
1873
Howard Hinnant82894812010-09-22 16:48:34 +00001874 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001875 pair<iterator,iterator> equal_range(const key_type& __k)
1876 {return __tree_.__equal_range_multi(__k);}
Howard Hinnant82894812010-09-22 16:48:34 +00001877 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001878 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
1879 {return __tree_.__equal_range_multi(__k);}
Marshall Clow5cfc6ab2013-08-13 22:18:47 +00001880#if _LIBCPP_STD_VER > 11
1881 template <typename _K2>
1882 _LIBCPP_INLINE_VISIBILITY
1883 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
1884 equal_range(const _K2& __k) {return __tree_.__equal_range_multi(__k);}
1885 template <typename _K2>
1886 _LIBCPP_INLINE_VISIBILITY
1887 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
1888 equal_range(const _K2& __k) const {return __tree_.__equal_range_multi(__k);}
1889#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001890
1891private:
1892 typedef typename __base::__node __node;
1893 typedef typename __base::__node_allocator __node_allocator;
1894 typedef typename __base::__node_pointer __node_pointer;
1895 typedef typename __base::__node_const_pointer __node_const_pointer;
Howard Hinnant99968442011-11-29 18:15:50 +00001896 typedef __map_node_destructor<__node_allocator> _Dp;
1897 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001898
Howard Hinnant73d21a42010-09-04 23:28:19 +00001899#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001900 __node_holder __construct_node();
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001901 template <class _A0>
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001902 __node_holder
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001903 __construct_node(_A0&& __a0);
Howard Hinnant73d21a42010-09-04 23:28:19 +00001904#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001905 template <class _A0, class _A1, class ..._Args>
1906 __node_holder __construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args);
Howard Hinnant73d21a42010-09-04 23:28:19 +00001907#endif // _LIBCPP_HAS_NO_VARIADICS
1908#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001909};
1910
Howard Hinnant73d21a42010-09-04 23:28:19 +00001911#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001912
1913template <class _Key, class _Tp, class _Compare, class _Allocator>
1914multimap<_Key, _Tp, _Compare, _Allocator>::multimap(multimap&& __m, const allocator_type& __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001915 : __tree_(_VSTD::move(__m.__tree_), __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001916{
1917 if (__a != __m.get_allocator())
1918 {
1919 const_iterator __e = cend();
1920 while (!__m.empty())
1921 __tree_.__insert_multi(__e.__i_,
Howard Hinnant0949eed2011-06-30 21:18:19 +00001922 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001923 }
1924}
1925
1926template <class _Key, class _Tp, class _Compare, class _Allocator>
1927typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
1928multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node()
1929{
1930 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00001931 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant70342b92013-06-19 21:29:40 +00001932 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.first));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001933 __h.get_deleter().__first_constructed = true;
Howard Hinnant70342b92013-06-19 21:29:40 +00001934 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__cc.second));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001935 __h.get_deleter().__second_constructed = true;
1936 return __h;
1937}
1938
1939template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001940template <class _A0>
Howard Hinnantb66e1c32013-07-04 20:59:16 +00001941typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001942multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0)
1943{
1944 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00001945 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Howard Hinnant0949eed2011-06-30 21:18:19 +00001946 __node_traits::construct(__na, _VSTD::addressof(__h->__value_), _VSTD::forward<_A0>(__a0));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001947 __h.get_deleter().__first_constructed = true;
1948 __h.get_deleter().__second_constructed = true;
1949 return __h;
1950}
1951
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001952#ifndef _LIBCPP_HAS_NO_VARIADICS
1953
1954template <class _Key, class _Tp, class _Compare, class _Allocator>
1955template <class _A0, class _A1, class ..._Args>
1956typename multimap<_Key, _Tp, _Compare, _Allocator>::__node_holder
1957multimap<_Key, _Tp, _Compare, _Allocator>::__construct_node(_A0&& __a0, _A1&& __a1, _Args&& ...__args)
1958{
1959 __node_allocator& __na = __tree_.__node_alloc();
1960 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
1961 __node_traits::construct(__na, _VSTD::addressof(__h->__value_),
1962 _VSTD::forward<_A0>(__a0), _VSTD::forward<_A1>(__a1),
1963 _VSTD::forward<_Args>(__args)...);
1964 __h.get_deleter().__first_constructed = true;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001965 __h.get_deleter().__second_constructed = true;
1966 return __h;
1967}
1968
Howard Hinnant73d21a42010-09-04 23:28:19 +00001969#endif // _LIBCPP_HAS_NO_VARIADICS
1970#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001971
Howard Hinnant73d21a42010-09-04 23:28:19 +00001972#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001973
1974template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001975template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001976typename multimap<_Key, _Tp, _Compare, _Allocator>::iterator
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001977multimap<_Key, _Tp, _Compare, _Allocator>::emplace(_Args&& ...__args)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001978{
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001979 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001980 iterator __r = __tree_.__node_insert_multi(__h.get());
1981 __h.release();
1982 return __r;
1983}
1984
1985template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001986template <class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001987typename multimap<_Key, _Tp, _Compare, _Allocator>::iterator
1988multimap<_Key, _Tp, _Compare, _Allocator>::emplace_hint(const_iterator __p,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001989 _Args&& ...__args)
1990{
Howard Hinnant635ce1d2012-05-25 22:04:21 +00001991 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001992 iterator __r = __tree_.__node_insert_multi(__p.__i_, __h.get());
1993 __h.release();
1994 return __r;
1995}
1996
Howard Hinnant73d21a42010-09-04 23:28:19 +00001997#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001998
1999template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002000inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002001bool
2002operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2003 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2004{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002005 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002006}
2007
2008template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002009inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002010bool
2011operator< (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2012 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2013{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002014 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002015}
2016
2017template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002018inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002019bool
2020operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2021 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2022{
2023 return !(__x == __y);
2024}
2025
2026template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002027inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002028bool
2029operator> (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2030 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2031{
2032 return __y < __x;
2033}
2034
2035template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002036inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002037bool
2038operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2039 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2040{
2041 return !(__x < __y);
2042}
2043
2044template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002045inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002046bool
2047operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2048 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2049{
2050 return !(__y < __x);
2051}
2052
2053template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant82894812010-09-22 16:48:34 +00002054inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002055void
2056swap(multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2057 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant7686add2011-06-04 14:31:57 +00002058 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002059{
2060 __x.swap(__y);
2061}
2062
2063_LIBCPP_END_NAMESPACE_STD
2064
2065#endif // _LIBCPP_MAP