blob: 47f5c678bccdd63a09bcbc080a264bdd33eca6c6 [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------- map ------------------------------------===//
3//
Chandler Carruthd2012102019-01-19 10:56:40 +00004// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Howard Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_MAP
11#define _LIBCPP_MAP
12
13/*
14
15 map synopsis
16
17namespace std
18{
19
20template <class Key, class T, class Compare = less<Key>,
21 class Allocator = allocator<pair<const Key, T>>>
22class map
23{
24public:
25 // types:
26 typedef Key key_type;
27 typedef T mapped_type;
28 typedef pair<const key_type, mapped_type> value_type;
29 typedef Compare key_compare;
30 typedef Allocator allocator_type;
31 typedef typename allocator_type::reference reference;
32 typedef typename allocator_type::const_reference const_reference;
33 typedef typename allocator_type::pointer pointer;
34 typedef typename allocator_type::const_pointer const_pointer;
35 typedef typename allocator_type::size_type size_type;
36 typedef typename allocator_type::difference_type difference_type;
37
38 typedef implementation-defined iterator;
39 typedef implementation-defined const_iterator;
40 typedef std::reverse_iterator<iterator> reverse_iterator;
41 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +000042 typedef unspecified node_type; // C++17
43 typedef INSERT_RETURN_TYPE<iterator, node_type> insert_return_type; // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +000044
45 class value_compare
46 : public binary_function<value_type, value_type, bool>
47 {
48 friend class map;
49 protected:
50 key_compare comp;
51
52 value_compare(key_compare c);
53 public:
54 bool operator()(const value_type& x, const value_type& y) const;
55 };
56
57 // construct/copy/destroy:
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +000058 map()
59 noexcept(
60 is_nothrow_default_constructible<allocator_type>::value &&
61 is_nothrow_default_constructible<key_compare>::value &&
62 is_nothrow_copy_constructible<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +000063 explicit map(const key_compare& comp);
64 map(const key_compare& comp, const allocator_type& a);
65 template <class InputIterator>
66 map(InputIterator first, InputIterator last,
67 const key_compare& comp = key_compare());
68 template <class InputIterator>
69 map(InputIterator first, InputIterator last,
70 const key_compare& comp, const allocator_type& a);
71 map(const map& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +000072 map(map&& m)
73 noexcept(
74 is_nothrow_move_constructible<allocator_type>::value &&
75 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +000076 explicit map(const allocator_type& a);
77 map(const map& m, const allocator_type& a);
78 map(map&& m, const allocator_type& a);
79 map(initializer_list<value_type> il, const key_compare& comp = key_compare());
80 map(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
Marshall Clow300abfb2013-09-11 01:15:47 +000081 template <class InputIterator>
82 map(InputIterator first, InputIterator last, const allocator_type& a)
83 : map(first, last, Compare(), a) {} // C++14
84 map(initializer_list<value_type> il, const allocator_type& a)
85 : map(il, Compare(), a) {} // C++14
86 ~map();
Howard Hinnantc51e1022010-05-11 19:42:16 +000087
88 map& operator=(const map& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +000089 map& operator=(map&& m)
90 noexcept(
91 allocator_type::propagate_on_container_move_assignment::value &&
92 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantf95f4f52011-06-04 15:22:34 +000093 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +000094 map& operator=(initializer_list<value_type> il);
95
96 // iterators:
Howard Hinnantf95f4f52011-06-04 15:22:34 +000097 iterator begin() noexcept;
98 const_iterator begin() const noexcept;
99 iterator end() noexcept;
100 const_iterator end() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000101
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000102 reverse_iterator rbegin() noexcept;
103 const_reverse_iterator rbegin() const noexcept;
104 reverse_iterator rend() noexcept;
105 const_reverse_iterator rend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000106
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000107 const_iterator cbegin() const noexcept;
108 const_iterator cend() const noexcept;
109 const_reverse_iterator crbegin() const noexcept;
110 const_reverse_iterator crend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000111
112 // capacity:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000113 bool empty() const noexcept;
114 size_type size() const noexcept;
115 size_type max_size() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000116
117 // element access:
118 mapped_type& operator[](const key_type& k);
119 mapped_type& operator[](key_type&& k);
120
121 mapped_type& at(const key_type& k);
122 const mapped_type& at(const key_type& k) const;
123
124 // modifiers:
125 template <class... Args>
126 pair<iterator, bool> emplace(Args&&... args);
127 template <class... Args>
128 iterator emplace_hint(const_iterator position, Args&&... args);
129 pair<iterator, bool> insert(const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000130 pair<iterator, bool> insert( value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000131 template <class P>
132 pair<iterator, bool> insert(P&& p);
133 iterator insert(const_iterator position, const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000134 iterator insert(const_iterator position, value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000135 template <class P>
136 iterator insert(const_iterator position, P&& p);
137 template <class InputIterator>
138 void insert(InputIterator first, InputIterator last);
139 void insert(initializer_list<value_type> il);
140
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +0000141 node_type extract(const_iterator position); // C++17
142 node_type extract(const key_type& x); // C++17
143 insert_return_type insert(node_type&& nh); // C++17
144 iterator insert(const_iterator hint, node_type&& nh); // C++17
145
Marshall Clow3223db82015-07-07 03:37:33 +0000146 template <class... Args>
147 pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17
148 template <class... Args>
149 pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17
150 template <class... Args>
151 iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17
152 template <class... Args>
153 iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17
154 template <class M>
155 pair<iterator, bool> insert_or_assign(const key_type& k, M&& obj); // C++17
156 template <class M>
157 pair<iterator, bool> insert_or_assign(key_type&& k, M&& obj); // C++17
158 template <class M>
159 iterator insert_or_assign(const_iterator hint, const key_type& k, M&& obj); // C++17
160 template <class M>
161 iterator insert_or_assign(const_iterator hint, key_type&& k, M&& obj); // C++17
162
Howard Hinnantc51e1022010-05-11 19:42:16 +0000163 iterator erase(const_iterator position);
Marshall Clow22ea5b82015-05-10 13:35:00 +0000164 iterator erase(iterator position); // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000165 size_type erase(const key_type& k);
166 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000167 void clear() noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000168
Erik Pilkington82a65ad2018-10-31 17:31:35 +0000169 template<class C2>
170 void merge(map<Key, T, C2, Allocator>& source); // C++17
171 template<class C2>
172 void merge(map<Key, T, C2, Allocator>&& source); // C++17
173 template<class C2>
174 void merge(multimap<Key, T, C2, Allocator>& source); // C++17
175 template<class C2>
176 void merge(multimap<Key, T, C2, Allocator>&& source); // C++17
177
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000178 void swap(map& m)
Marshall Clow8982dcd2015-07-13 20:04:56 +0000179 noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
Eric Fiselier6bfed252016-04-21 23:38:59 +0000180 is_nothrow_swappable<key_compare>::value); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000181
182 // observers:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000183 allocator_type get_allocator() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000184 key_compare key_comp() const;
185 value_compare value_comp() const;
186
187 // map operations:
188 iterator find(const key_type& k);
189 const_iterator find(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000190 template<typename K>
191 iterator find(const K& x); // C++14
192 template<typename K>
193 const_iterator find(const K& x) const; // C++14
194 template<typename K>
Marshall Clowe6a5f522014-08-24 23:54:16 +0000195 size_type count(const K& x) const; // C++14
Marshall Clowebb57322013-08-13 22:18:47 +0000196
Howard Hinnantc51e1022010-05-11 19:42:16 +0000197 size_type count(const key_type& k) const;
198 iterator lower_bound(const key_type& k);
199 const_iterator lower_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000200 template<typename K>
201 iterator lower_bound(const K& x); // C++14
202 template<typename K>
203 const_iterator lower_bound(const K& x) const; // C++14
204
Howard Hinnantc51e1022010-05-11 19:42:16 +0000205 iterator upper_bound(const key_type& k);
206 const_iterator upper_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000207 template<typename K>
208 iterator upper_bound(const K& x); // C++14
209 template<typename K>
210 const_iterator upper_bound(const K& x) const; // C++14
211
Howard Hinnantc51e1022010-05-11 19:42:16 +0000212 pair<iterator,iterator> equal_range(const key_type& k);
213 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000214 template<typename K>
215 pair<iterator,iterator> equal_range(const K& x); // C++14
216 template<typename K>
217 pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000218};
219
220template <class Key, class T, class Compare, class Allocator>
221bool
222operator==(const map<Key, T, Compare, Allocator>& x,
223 const map<Key, T, Compare, Allocator>& y);
224
225template <class Key, class T, class Compare, class Allocator>
226bool
227operator< (const map<Key, T, Compare, Allocator>& x,
228 const map<Key, T, Compare, Allocator>& y);
229
230template <class Key, class T, class Compare, class Allocator>
231bool
232operator!=(const map<Key, T, Compare, Allocator>& x,
233 const map<Key, T, Compare, Allocator>& y);
234
235template <class Key, class T, class Compare, class Allocator>
236bool
237operator> (const map<Key, T, Compare, Allocator>& x,
238 const map<Key, T, Compare, Allocator>& y);
239
240template <class Key, class T, class Compare, class Allocator>
241bool
242operator>=(const map<Key, T, Compare, Allocator>& x,
243 const map<Key, T, Compare, Allocator>& y);
244
245template <class Key, class T, class Compare, class Allocator>
246bool
247operator<=(const map<Key, T, Compare, Allocator>& x,
248 const map<Key, T, Compare, Allocator>& y);
249
250// specialized algorithms:
251template <class Key, class T, class Compare, class Allocator>
252void
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000253swap(map<Key, T, Compare, Allocator>& x, map<Key, T, Compare, Allocator>& y)
254 noexcept(noexcept(x.swap(y)));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000255
Marshall Clow29b53f22018-12-14 18:49:35 +0000256template <class Key, class T, class Compare, class Allocator, class Predicate>
257 void erase_if(map<Key, T, Compare, Allocator>& c, Predicate pred); // C++20
258
259
Howard Hinnantc51e1022010-05-11 19:42:16 +0000260template <class Key, class T, class Compare = less<Key>,
261 class Allocator = allocator<pair<const Key, T>>>
262class multimap
263{
264public:
265 // types:
266 typedef Key key_type;
267 typedef T mapped_type;
268 typedef pair<const key_type,mapped_type> value_type;
269 typedef Compare key_compare;
270 typedef Allocator allocator_type;
271 typedef typename allocator_type::reference reference;
272 typedef typename allocator_type::const_reference const_reference;
273 typedef typename allocator_type::size_type size_type;
274 typedef typename allocator_type::difference_type difference_type;
275 typedef typename allocator_type::pointer pointer;
276 typedef typename allocator_type::const_pointer const_pointer;
277
278 typedef implementation-defined iterator;
279 typedef implementation-defined const_iterator;
280 typedef std::reverse_iterator<iterator> reverse_iterator;
281 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +0000282 typedef unspecified node_type; // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000283
284 class value_compare
285 : public binary_function<value_type,value_type,bool>
286 {
287 friend class multimap;
288 protected:
289 key_compare comp;
290 value_compare(key_compare c);
291 public:
292 bool operator()(const value_type& x, const value_type& y) const;
293 };
294
295 // construct/copy/destroy:
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000296 multimap()
297 noexcept(
298 is_nothrow_default_constructible<allocator_type>::value &&
299 is_nothrow_default_constructible<key_compare>::value &&
300 is_nothrow_copy_constructible<key_compare>::value);
301 explicit multimap(const key_compare& comp);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000302 multimap(const key_compare& comp, const allocator_type& a);
303 template <class InputIterator>
304 multimap(InputIterator first, InputIterator last, const key_compare& comp);
305 template <class InputIterator>
306 multimap(InputIterator first, InputIterator last, const key_compare& comp,
307 const allocator_type& a);
308 multimap(const multimap& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000309 multimap(multimap&& m)
310 noexcept(
311 is_nothrow_move_constructible<allocator_type>::value &&
312 is_nothrow_move_constructible<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000313 explicit multimap(const allocator_type& a);
314 multimap(const multimap& m, const allocator_type& a);
315 multimap(multimap&& m, const allocator_type& a);
316 multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
317 multimap(initializer_list<value_type> il, const key_compare& comp,
318 const allocator_type& a);
Marshall Clow300abfb2013-09-11 01:15:47 +0000319 template <class InputIterator>
320 multimap(InputIterator first, InputIterator last, const allocator_type& a)
321 : multimap(first, last, Compare(), a) {} // C++14
322 multimap(initializer_list<value_type> il, const allocator_type& a)
323 : multimap(il, Compare(), a) {} // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000324 ~multimap();
325
326 multimap& operator=(const multimap& m);
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000327 multimap& operator=(multimap&& m)
328 noexcept(
329 allocator_type::propagate_on_container_move_assignment::value &&
330 is_nothrow_move_assignable<allocator_type>::value &&
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000331 is_nothrow_move_assignable<key_compare>::value);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000332 multimap& operator=(initializer_list<value_type> il);
333
334 // iterators:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000335 iterator begin() noexcept;
336 const_iterator begin() const noexcept;
337 iterator end() noexcept;
338 const_iterator end() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000339
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000340 reverse_iterator rbegin() noexcept;
341 const_reverse_iterator rbegin() const noexcept;
342 reverse_iterator rend() noexcept;
343 const_reverse_iterator rend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000344
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000345 const_iterator cbegin() const noexcept;
346 const_iterator cend() const noexcept;
347 const_reverse_iterator crbegin() const noexcept;
348 const_reverse_iterator crend() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000349
350 // capacity:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000351 bool empty() const noexcept;
352 size_type size() const noexcept;
353 size_type max_size() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000354
355 // modifiers:
356 template <class... Args>
357 iterator emplace(Args&&... args);
358 template <class... Args>
359 iterator emplace_hint(const_iterator position, Args&&... args);
360 iterator insert(const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000361 iterator insert( value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000362 template <class P>
363 iterator insert(P&& p);
364 iterator insert(const_iterator position, const value_type& v);
Marshall Clowd430d022016-01-05 19:32:41 +0000365 iterator insert(const_iterator position, value_type&& v); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000366 template <class P>
367 iterator insert(const_iterator position, P&& p);
368 template <class InputIterator>
369 void insert(InputIterator first, InputIterator last);
370 void insert(initializer_list<value_type> il);
371
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +0000372 node_type extract(const_iterator position); // C++17
373 node_type extract(const key_type& x); // C++17
374 iterator insert(node_type&& nh); // C++17
375 iterator insert(const_iterator hint, node_type&& nh); // C++17
376
Howard Hinnantc51e1022010-05-11 19:42:16 +0000377 iterator erase(const_iterator position);
Marshall Clow22ea5b82015-05-10 13:35:00 +0000378 iterator erase(iterator position); // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000379 size_type erase(const key_type& k);
380 iterator erase(const_iterator first, const_iterator last);
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000381 void clear() noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000382
Erik Pilkington82a65ad2018-10-31 17:31:35 +0000383 template<class C2>
384 void merge(multimap<Key, T, C2, Allocator>& source); // C++17
385 template<class C2>
386 void merge(multimap<Key, T, C2, Allocator>&& source); // C++17
387 template<class C2>
388 void merge(map<Key, T, C2, Allocator>& source); // C++17
389 template<class C2>
390 void merge(map<Key, T, C2, Allocator>&& source); // C++17
391
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000392 void swap(multimap& m)
Marshall Clow8982dcd2015-07-13 20:04:56 +0000393 noexcept(allocator_traits<allocator_type>::is_always_equal::value &&
Eric Fiselier6bfed252016-04-21 23:38:59 +0000394 is_nothrow_swappable<key_compare>::value); // C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000395
396 // observers:
Howard Hinnantf95f4f52011-06-04 15:22:34 +0000397 allocator_type get_allocator() const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000398 key_compare key_comp() const;
399 value_compare value_comp() const;
400
401 // map operations:
402 iterator find(const key_type& k);
403 const_iterator find(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000404 template<typename K>
405 iterator find(const K& x); // C++14
406 template<typename K>
407 const_iterator find(const K& x) const; // C++14
408 template<typename K>
Marshall Clowe6a5f522014-08-24 23:54:16 +0000409 size_type count(const K& x) const; // C++14
Marshall Clowebb57322013-08-13 22:18:47 +0000410
Howard Hinnantc51e1022010-05-11 19:42:16 +0000411 size_type count(const key_type& k) const;
412 iterator lower_bound(const key_type& k);
413 const_iterator lower_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000414 template<typename K>
415 iterator lower_bound(const K& x); // C++14
416 template<typename K>
417 const_iterator lower_bound(const K& x) const; // C++14
418
Howard Hinnantc51e1022010-05-11 19:42:16 +0000419 iterator upper_bound(const key_type& k);
420 const_iterator upper_bound(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000421 template<typename K>
422 iterator upper_bound(const K& x); // C++14
423 template<typename K>
424 const_iterator upper_bound(const K& x) const; // C++14
425
Howard Hinnantc51e1022010-05-11 19:42:16 +0000426 pair<iterator,iterator> equal_range(const key_type& k);
427 pair<const_iterator,const_iterator> equal_range(const key_type& k) const;
Marshall Clowebb57322013-08-13 22:18:47 +0000428 template<typename K>
429 pair<iterator,iterator> equal_range(const K& x); // C++14
430 template<typename K>
431 pair<const_iterator,const_iterator> equal_range(const K& x) const; // C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +0000432};
433
434template <class Key, class T, class Compare, class Allocator>
435bool
436operator==(const multimap<Key, T, Compare, Allocator>& x,
437 const multimap<Key, T, Compare, Allocator>& y);
438
439template <class Key, class T, class Compare, class Allocator>
440bool
441operator< (const multimap<Key, T, Compare, Allocator>& x,
442 const multimap<Key, T, Compare, Allocator>& y);
443
444template <class Key, class T, class Compare, class Allocator>
445bool
446operator!=(const multimap<Key, T, Compare, Allocator>& x,
447 const multimap<Key, T, Compare, Allocator>& y);
448
449template <class Key, class T, class Compare, class Allocator>
450bool
451operator> (const multimap<Key, T, Compare, Allocator>& x,
452 const multimap<Key, T, Compare, Allocator>& y);
453
454template <class Key, class T, class Compare, class Allocator>
455bool
456operator>=(const multimap<Key, T, Compare, Allocator>& x,
457 const multimap<Key, T, Compare, Allocator>& y);
458
459template <class Key, class T, class Compare, class Allocator>
460bool
461operator<=(const multimap<Key, T, Compare, Allocator>& x,
462 const multimap<Key, T, Compare, Allocator>& y);
463
464// specialized algorithms:
465template <class Key, class T, class Compare, class Allocator>
466void
467swap(multimap<Key, T, Compare, Allocator>& x,
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000468 multimap<Key, T, Compare, Allocator>& y)
469 noexcept(noexcept(x.swap(y)));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000470
Marshall Clow29b53f22018-12-14 18:49:35 +0000471template <class Key, class T, class Compare, class Allocator, class Predicate>
472 void erase_if(multimap<Key, T, Compare, Allocator>& c, Predicate pred); // C++20
473
Howard Hinnantc51e1022010-05-11 19:42:16 +0000474} // std
475
476*/
477
478#include <__config>
479#include <__tree>
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +0000480#include <__node_handle>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000481#include <iterator>
482#include <memory>
483#include <utility>
484#include <functional>
485#include <initializer_list>
Eric Fiselierf7394302015-06-13 07:08:02 +0000486#include <type_traits>
Marshall Clow0a1e7502018-09-12 19:41:40 +0000487#include <version>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000488
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000489#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000490#pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000491#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000492
493_LIBCPP_BEGIN_NAMESPACE_STD
494
Louis Dionne878a3a82018-12-06 21:46:17 +0000495template <class _Key, class _CP, class _Compare,
496 bool = is_empty<_Compare>::value && !__libcpp_is_final<_Compare>::value>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000497class __map_value_compare
498 : private _Compare
499{
Howard Hinnantc51e1022010-05-11 19:42:16 +0000500public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000501 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000502 __map_value_compare()
503 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
504 : _Compare() {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000505 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000506 __map_value_compare(_Compare c)
507 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
508 : _Compare(c) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000509 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000510 const _Compare& key_comp() const _NOEXCEPT {return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000511 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000512 bool operator()(const _CP& __x, const _CP& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000513 {return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y.__get_value().first);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000514 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000515 bool operator()(const _CP& __x, const _Key& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000516 {return static_cast<const _Compare&>(*this)(__x.__get_value().first, __y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000517 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000518 bool operator()(const _Key& __x, const _CP& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000519 {return static_cast<const _Compare&>(*this)(__x, __y.__get_value().first);}
Marshall Clow8982dcd2015-07-13 20:04:56 +0000520 void swap(__map_value_compare&__y)
521 _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value)
522 {
Eric Fiselier68b5f0b2017-04-13 00:34:24 +0000523 using _VSTD::swap;
524 swap(static_cast<_Compare&>(*this), static_cast<_Compare&>(__y));
Marshall Clow8982dcd2015-07-13 20:04:56 +0000525 }
Marshall Clowebb57322013-08-13 22:18:47 +0000526
527#if _LIBCPP_STD_VER > 11
528 template <typename _K2>
529 _LIBCPP_INLINE_VISIBILITY
530 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
531 operator () ( const _K2& __x, const _CP& __y ) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000532 {return static_cast<const _Compare&>(*this) (__x, __y.__get_value().first);}
Marshall Clowebb57322013-08-13 22:18:47 +0000533
534 template <typename _K2>
535 _LIBCPP_INLINE_VISIBILITY
536 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
537 operator () (const _CP& __x, const _K2& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000538 {return static_cast<const _Compare&>(*this) (__x.__get_value().first, __y);}
Marshall Clowebb57322013-08-13 22:18:47 +0000539#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000540};
541
Howard Hinnant90b91592013-07-05 18:06:00 +0000542template <class _Key, class _CP, class _Compare>
543class __map_value_compare<_Key, _CP, _Compare, false>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000544{
545 _Compare comp;
546
Howard Hinnantc51e1022010-05-11 19:42:16 +0000547public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000548 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000549 __map_value_compare()
550 _NOEXCEPT_(is_nothrow_default_constructible<_Compare>::value)
551 : comp() {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000552 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000553 __map_value_compare(_Compare c)
554 _NOEXCEPT_(is_nothrow_copy_constructible<_Compare>::value)
555 : comp(c) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000556 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000557 const _Compare& key_comp() const _NOEXCEPT {return comp;}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000558
Howard Hinnant756c69b2010-09-22 16:48:34 +0000559 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000560 bool operator()(const _CP& __x, const _CP& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000561 {return comp(__x.__get_value().first, __y.__get_value().first);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000562 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000563 bool operator()(const _CP& __x, const _Key& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000564 {return comp(__x.__get_value().first, __y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000565 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000566 bool operator()(const _Key& __x, const _CP& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000567 {return comp(__x, __y.__get_value().first);}
Marshall Clow8982dcd2015-07-13 20:04:56 +0000568 void swap(__map_value_compare&__y)
569 _NOEXCEPT_(__is_nothrow_swappable<_Compare>::value)
570 {
571 using _VSTD::swap;
572 swap(comp, __y.comp);
573 }
Eric Fiseliercf8c0212017-01-05 06:06:18 +0000574
Marshall Clowebb57322013-08-13 22:18:47 +0000575#if _LIBCPP_STD_VER > 11
576 template <typename _K2>
577 _LIBCPP_INLINE_VISIBILITY
578 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
579 operator () ( const _K2& __x, const _CP& __y ) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000580 {return comp (__x, __y.__get_value().first);}
Marshall Clowebb57322013-08-13 22:18:47 +0000581
582 template <typename _K2>
583 _LIBCPP_INLINE_VISIBILITY
584 typename enable_if<__is_transparent<_Compare, _K2>::value, bool>::type
585 operator () (const _CP& __x, const _K2& __y) const
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000586 {return comp (__x.__get_value().first, __y);}
Marshall Clowebb57322013-08-13 22:18:47 +0000587#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000588};
589
Marshall Clow8982dcd2015-07-13 20:04:56 +0000590template <class _Key, class _CP, class _Compare, bool __b>
591inline _LIBCPP_INLINE_VISIBILITY
592void
593swap(__map_value_compare<_Key, _CP, _Compare, __b>& __x,
594 __map_value_compare<_Key, _CP, _Compare, __b>& __y)
595 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
596{
597 __x.swap(__y);
598}
599
Howard Hinnantc51e1022010-05-11 19:42:16 +0000600template <class _Allocator>
601class __map_node_destructor
602{
603 typedef _Allocator allocator_type;
604 typedef allocator_traits<allocator_type> __alloc_traits;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000605
Howard Hinnantc51e1022010-05-11 19:42:16 +0000606public:
607 typedef typename __alloc_traits::pointer pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000608
Eric Fiseliera00b4842016-02-20 05:28:30 +0000609private:
Howard Hinnantc51e1022010-05-11 19:42:16 +0000610 allocator_type& __na_;
611
612 __map_node_destructor& operator=(const __map_node_destructor&);
613
614public:
615 bool __first_constructed;
616 bool __second_constructed;
617
Howard Hinnant756c69b2010-09-22 16:48:34 +0000618 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000619 explicit __map_node_destructor(allocator_type& __na) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000620 : __na_(__na),
621 __first_constructed(false),
622 __second_constructed(false)
623 {}
624
Eric Fiseliera85b1282017-04-18 21:08:06 +0000625#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant756c69b2010-09-22 16:48:34 +0000626 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000627 __map_node_destructor(__tree_node_destructor<allocator_type>&& __x) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000628 : __na_(__x.__na_),
629 __first_constructed(__x.__value_constructed),
630 __second_constructed(__x.__value_constructed)
631 {
632 __x.__value_constructed = false;
633 }
Eric Fiseliera85b1282017-04-18 21:08:06 +0000634#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000635
Howard Hinnant756c69b2010-09-22 16:48:34 +0000636 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000637 void operator()(pointer __p) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +0000638 {
639 if (__second_constructed)
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000640 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__get_value().second));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000641 if (__first_constructed)
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000642 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__get_value().first));
Howard Hinnantc51e1022010-05-11 19:42:16 +0000643 if (__p)
644 __alloc_traits::deallocate(__na_, __p, 1);
645 }
646};
647
Howard Hinnant944510a2011-06-14 19:58:17 +0000648template <class _Key, class _Tp, class _Compare, class _Allocator>
649 class map;
650template <class _Key, class _Tp, class _Compare, class _Allocator>
651 class multimap;
652template <class _TreeIterator> class __map_const_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000653
Eric Fiseliera00b4842016-02-20 05:28:30 +0000654#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant89f8b792013-09-30 19:08:22 +0000655
656template <class _Key, class _Tp>
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000657struct __value_type
Howard Hinnant89f8b792013-09-30 19:08:22 +0000658{
659 typedef _Key key_type;
660 typedef _Tp mapped_type;
661 typedef pair<const key_type, mapped_type> value_type;
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000662 typedef pair<key_type&, mapped_type&> __nc_ref_pair_type;
663 typedef pair<key_type&&, mapped_type&&> __nc_rref_pair_type;
Howard Hinnant89f8b792013-09-30 19:08:22 +0000664
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000665private:
Howard Hinnant89f8b792013-09-30 19:08:22 +0000666 value_type __cc;
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000667
668public:
669 _LIBCPP_INLINE_VISIBILITY
670 value_type& __get_value()
671 {
672#if _LIBCPP_STD_VER > 14
673 return *_VSTD::launder(_VSTD::addressof(__cc));
674#else
675 return __cc;
676#endif
677 }
678
679 _LIBCPP_INLINE_VISIBILITY
680 const value_type& __get_value() const
681 {
682#if _LIBCPP_STD_VER > 14
683 return *_VSTD::launder(_VSTD::addressof(__cc));
684#else
685 return __cc;
686#endif
687 }
688
689 _LIBCPP_INLINE_VISIBILITY
690 __nc_ref_pair_type __ref()
691 {
692 value_type& __v = __get_value();
693 return __nc_ref_pair_type(const_cast<key_type&>(__v.first), __v.second);
694 }
695
696 _LIBCPP_INLINE_VISIBILITY
697 __nc_rref_pair_type __move()
698 {
699 value_type& __v = __get_value();
700 return __nc_rref_pair_type(
701 _VSTD::move(const_cast<key_type&>(__v.first)),
702 _VSTD::move(__v.second));
703 }
Howard Hinnant89f8b792013-09-30 19:08:22 +0000704
Howard Hinnant89f8b792013-09-30 19:08:22 +0000705 _LIBCPP_INLINE_VISIBILITY
706 __value_type& operator=(const __value_type& __v)
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000707 {
708 __ref() = __v.__get_value();
709 return *this;
710 }
Howard Hinnant89f8b792013-09-30 19:08:22 +0000711
712 _LIBCPP_INLINE_VISIBILITY
713 __value_type& operator=(__value_type&& __v)
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000714 {
715 __ref() = __v.__move();
716 return *this;
717 }
Howard Hinnant89f8b792013-09-30 19:08:22 +0000718
Eric Fiselierd06276b2016-03-31 02:15:15 +0000719 template <class _ValueTp,
720 class = typename enable_if<
721 __is_same_uncvref<_ValueTp, value_type>::value
722 >::type
723 >
Howard Hinnant89f8b792013-09-30 19:08:22 +0000724 _LIBCPP_INLINE_VISIBILITY
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000725 __value_type& operator=(_ValueTp&& __v)
726 {
727 __ref() = _VSTD::forward<_ValueTp>(__v);
728 return *this;
Eric Fiselierd06276b2016-03-31 02:15:15 +0000729 }
730
731private:
732 __value_type() _LIBCPP_EQUAL_DELETE;
733 ~__value_type() _LIBCPP_EQUAL_DELETE;
734 __value_type(const __value_type& __v) _LIBCPP_EQUAL_DELETE;
735 __value_type(__value_type&& __v) _LIBCPP_EQUAL_DELETE;
Howard Hinnant89f8b792013-09-30 19:08:22 +0000736};
737
738#else
739
740template <class _Key, class _Tp>
741struct __value_type
742{
743 typedef _Key key_type;
744 typedef _Tp mapped_type;
745 typedef pair<const key_type, mapped_type> value_type;
746
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000747private:
Howard Hinnant89f8b792013-09-30 19:08:22 +0000748 value_type __cc;
749
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000750public:
751 _LIBCPP_INLINE_VISIBILITY
752 value_type& __get_value() { return __cc; }
753 _LIBCPP_INLINE_VISIBILITY
754 const value_type& __get_value() const { return __cc; }
755
Eric Fiselierd06276b2016-03-31 02:15:15 +0000756private:
757 __value_type();
758 __value_type(__value_type const&);
759 __value_type& operator=(__value_type const&);
760 ~__value_type();
Howard Hinnant89f8b792013-09-30 19:08:22 +0000761};
762
Eric Fiseliera85b1282017-04-18 21:08:06 +0000763#endif // _LIBCPP_CXX03_LANG
Howard Hinnant89f8b792013-09-30 19:08:22 +0000764
Eric Fiselier44f9fd02015-03-03 20:10:01 +0000765template <class _Tp>
766struct __extract_key_value_types;
767
768template <class _Key, class _Tp>
769struct __extract_key_value_types<__value_type<_Key, _Tp> >
770{
771 typedef _Key const __key_type;
772 typedef _Tp __mapped_type;
773};
774
Howard Hinnantc51e1022010-05-11 19:42:16 +0000775template <class _TreeIterator>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000776class _LIBCPP_TEMPLATE_VIS __map_iterator
Howard Hinnantc51e1022010-05-11 19:42:16 +0000777{
Eric Fiseliera00b4842016-02-20 05:28:30 +0000778 typedef typename _TreeIterator::_NodeTypes _NodeTypes;
779 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
780
Howard Hinnantc51e1022010-05-11 19:42:16 +0000781 _TreeIterator __i_;
782
Howard Hinnantc51e1022010-05-11 19:42:16 +0000783public:
784 typedef bidirectional_iterator_tag iterator_category;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000785 typedef typename _NodeTypes::__map_value_type value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000786 typedef typename _TreeIterator::difference_type difference_type;
787 typedef value_type& reference;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000788 typedef typename _NodeTypes::__map_value_type_pointer pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000789
Howard Hinnant756c69b2010-09-22 16:48:34 +0000790 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000791 __map_iterator() _NOEXCEPT {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000792
Howard Hinnant756c69b2010-09-22 16:48:34 +0000793 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000794 __map_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000795
Howard Hinnant756c69b2010-09-22 16:48:34 +0000796 _LIBCPP_INLINE_VISIBILITY
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000797 reference operator*() const {return __i_->__get_value();}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000798 _LIBCPP_INLINE_VISIBILITY
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000799 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__get_value());}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000800
Howard Hinnant756c69b2010-09-22 16:48:34 +0000801 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000802 __map_iterator& operator++() {++__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000803 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000804 __map_iterator operator++(int)
805 {
806 __map_iterator __t(*this);
807 ++(*this);
808 return __t;
809 }
810
Howard Hinnant756c69b2010-09-22 16:48:34 +0000811 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000812 __map_iterator& operator--() {--__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000813 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000814 __map_iterator operator--(int)
815 {
816 __map_iterator __t(*this);
817 --(*this);
818 return __t;
819 }
820
Howard Hinnant756c69b2010-09-22 16:48:34 +0000821 friend _LIBCPP_INLINE_VISIBILITY
822 bool operator==(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000823 {return __x.__i_ == __y.__i_;}
Eric Fiseliercf8c0212017-01-05 06:06:18 +0000824 friend
Howard Hinnant756c69b2010-09-22 16:48:34 +0000825 _LIBCPP_INLINE_VISIBILITY
826 bool operator!=(const __map_iterator& __x, const __map_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000827 {return __x.__i_ != __y.__i_;}
828
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000829 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS map;
830 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS multimap;
831 template <class> friend class _LIBCPP_TEMPLATE_VIS __map_const_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000832};
833
834template <class _TreeIterator>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000835class _LIBCPP_TEMPLATE_VIS __map_const_iterator
Howard Hinnantc51e1022010-05-11 19:42:16 +0000836{
Eric Fiseliera00b4842016-02-20 05:28:30 +0000837 typedef typename _TreeIterator::_NodeTypes _NodeTypes;
838 typedef typename _TreeIterator::__pointer_traits __pointer_traits;
839
Howard Hinnantc51e1022010-05-11 19:42:16 +0000840 _TreeIterator __i_;
841
Howard Hinnantc51e1022010-05-11 19:42:16 +0000842public:
843 typedef bidirectional_iterator_tag iterator_category;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000844 typedef typename _NodeTypes::__map_value_type value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000845 typedef typename _TreeIterator::difference_type difference_type;
846 typedef const value_type& reference;
Eric Fiseliera00b4842016-02-20 05:28:30 +0000847 typedef typename _NodeTypes::__const_map_value_type_pointer pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000848
Howard Hinnant756c69b2010-09-22 16:48:34 +0000849 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000850 __map_const_iterator() _NOEXCEPT {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000851
Howard Hinnant756c69b2010-09-22 16:48:34 +0000852 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000853 __map_const_iterator(_TreeIterator __i) _NOEXCEPT : __i_(__i) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000854 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier44f9fd02015-03-03 20:10:01 +0000855 __map_const_iterator(__map_iterator<
856 typename _TreeIterator::__non_const_iterator> __i) _NOEXCEPT
857 : __i_(__i.__i_) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000858
Howard Hinnant756c69b2010-09-22 16:48:34 +0000859 _LIBCPP_INLINE_VISIBILITY
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000860 reference operator*() const {return __i_->__get_value();}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000861 _LIBCPP_INLINE_VISIBILITY
Erik Pilkingtond3fe2992018-06-04 20:38:23 +0000862 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__i_->__get_value());}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000863
Howard Hinnant756c69b2010-09-22 16:48:34 +0000864 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000865 __map_const_iterator& operator++() {++__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000866 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000867 __map_const_iterator operator++(int)
868 {
869 __map_const_iterator __t(*this);
870 ++(*this);
871 return __t;
872 }
873
Howard Hinnant756c69b2010-09-22 16:48:34 +0000874 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000875 __map_const_iterator& operator--() {--__i_; return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000876 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000877 __map_const_iterator operator--(int)
878 {
879 __map_const_iterator __t(*this);
880 --(*this);
881 return __t;
882 }
883
Howard Hinnant756c69b2010-09-22 16:48:34 +0000884 friend _LIBCPP_INLINE_VISIBILITY
885 bool operator==(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000886 {return __x.__i_ == __y.__i_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +0000887 friend _LIBCPP_INLINE_VISIBILITY
888 bool operator!=(const __map_const_iterator& __x, const __map_const_iterator& __y)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000889 {return __x.__i_ != __y.__i_;}
890
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000891 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS map;
892 template <class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS multimap;
893 template <class, class, class> friend class _LIBCPP_TEMPLATE_VIS __tree_const_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000894};
895
896template <class _Key, class _Tp, class _Compare = less<_Key>,
897 class _Allocator = allocator<pair<const _Key, _Tp> > >
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000898class _LIBCPP_TEMPLATE_VIS map
Howard Hinnantc51e1022010-05-11 19:42:16 +0000899{
900public:
901 // types:
902 typedef _Key key_type;
903 typedef _Tp mapped_type;
904 typedef pair<const key_type, mapped_type> value_type;
905 typedef _Compare key_compare;
906 typedef _Allocator allocator_type;
907 typedef value_type& reference;
908 typedef const value_type& const_reference;
909
Louis Dionne878a3a82018-12-06 21:46:17 +0000910 static_assert(sizeof(__diagnose_non_const_comparator<_Key, _Compare>()), "");
Marshall Clow5128cf32015-11-26 01:24:04 +0000911 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
912 "Allocator::value_type must be same type as value_type");
913
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000914 class _LIBCPP_TEMPLATE_VIS value_compare
Howard Hinnantc51e1022010-05-11 19:42:16 +0000915 : public binary_function<value_type, value_type, bool>
916 {
917 friend class map;
918 protected:
919 key_compare comp;
920
Howard Hinnant756c69b2010-09-22 16:48:34 +0000921 _LIBCPP_INLINE_VISIBILITY value_compare(key_compare c) : comp(c) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000922 public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000923 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000924 bool operator()(const value_type& __x, const value_type& __y) const
925 {return comp(__x.first, __y.first);}
926 };
927
928private:
Howard Hinnant2d0046b2013-06-19 21:29:40 +0000929
Howard Hinnant89f8b792013-09-30 19:08:22 +0000930 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant90b91592013-07-05 18:06:00 +0000931 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow940e01c2015-04-07 05:21:38 +0000932 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
933 __value_type>::type __allocator_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000934 typedef __tree<__value_type, __vc, __allocator_type> __base;
935 typedef typename __base::__node_traits __node_traits;
936 typedef allocator_traits<allocator_type> __alloc_traits;
937
938 __base __tree_;
939
940public:
941 typedef typename __alloc_traits::pointer pointer;
942 typedef typename __alloc_traits::const_pointer const_pointer;
943 typedef typename __alloc_traits::size_type size_type;
944 typedef typename __alloc_traits::difference_type difference_type;
Eric Fiselier44f9fd02015-03-03 20:10:01 +0000945 typedef __map_iterator<typename __base::iterator> iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000946 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000947 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
948 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000949
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +0000950#if _LIBCPP_STD_VER > 14
951 typedef __map_node_handle<typename __base::__node, allocator_type> node_type;
952 typedef __insert_return_type<iterator, node_type> insert_return_type;
953#endif
954
Erik Pilkington82a65ad2018-10-31 17:31:35 +0000955 template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
956 friend class _LIBCPP_TEMPLATE_VIS map;
957 template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
958 friend class _LIBCPP_TEMPLATE_VIS multimap;
959
Howard Hinnant756c69b2010-09-22 16:48:34 +0000960 _LIBCPP_INLINE_VISIBILITY
Marshall Clow7086a5a2014-03-10 04:50:10 +0000961 map()
962 _NOEXCEPT_(
963 is_nothrow_default_constructible<allocator_type>::value &&
964 is_nothrow_default_constructible<key_compare>::value &&
965 is_nothrow_copy_constructible<key_compare>::value)
966 : __tree_(__vc(key_compare())) {}
967
968 _LIBCPP_INLINE_VISIBILITY
969 explicit map(const key_compare& __comp)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000970 _NOEXCEPT_(
971 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +0000972 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000973 : __tree_(__vc(__comp)) {}
974
Howard Hinnant756c69b2010-09-22 16:48:34 +0000975 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000976 explicit map(const key_compare& __comp, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +0000977 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000978
979 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +0000980 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000981 map(_InputIterator __f, _InputIterator __l,
982 const key_compare& __comp = key_compare())
983 : __tree_(__vc(__comp))
984 {
985 insert(__f, __l);
986 }
987
988 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +0000989 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000990 map(_InputIterator __f, _InputIterator __l,
991 const key_compare& __comp, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +0000992 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +0000993 {
994 insert(__f, __l);
995 }
996
Marshall Clow300abfb2013-09-11 01:15:47 +0000997#if _LIBCPP_STD_VER > 11
998 template <class _InputIterator>
Eric Fiseliercf8c0212017-01-05 06:06:18 +0000999 _LIBCPP_INLINE_VISIBILITY
Marshall Clow300abfb2013-09-11 01:15:47 +00001000 map(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
1001 : map(__f, __l, key_compare(), __a) {}
1002#endif
1003
Howard Hinnant756c69b2010-09-22 16:48:34 +00001004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001005 map(const map& __m)
1006 : __tree_(__m.__tree_)
1007 {
1008 insert(__m.begin(), __m.end());
1009 }
1010
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001011 _LIBCPP_INLINE_VISIBILITY
1012 map& operator=(const map& __m)
1013 {
Marshall Clow476d3f42016-07-18 13:19:00 +00001014#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001015 __tree_ = __m.__tree_;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001016#else
Marshall Clowdb3cfcb2014-02-08 04:03:14 +00001017 if (this != &__m) {
1018 __tree_.clear();
1019 __tree_.value_comp() = __m.__tree_.value_comp();
1020 __tree_.__copy_assign_alloc(__m.__tree_);
1021 insert(__m.begin(), __m.end());
1022 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001023#endif
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001024 return *this;
1025 }
1026
Eric Fiseliera85b1282017-04-18 21:08:06 +00001027#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001028
Howard Hinnant756c69b2010-09-22 16:48:34 +00001029 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001030 map(map&& __m)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001031 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001032 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001033 {
1034 }
1035
1036 map(map&& __m, const allocator_type& __a);
1037
Howard Hinnant756c69b2010-09-22 16:48:34 +00001038 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant33711792011-08-12 21:56:02 +00001039 map& operator=(map&& __m)
1040 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1041 {
1042 __tree_ = _VSTD::move(__m.__tree_);
1043 return *this;
1044 }
1045
Howard Hinnant33711792011-08-12 21:56:02 +00001046 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001047 map(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
1048 : __tree_(__vc(__comp))
1049 {
1050 insert(__il.begin(), __il.end());
1051 }
1052
Howard Hinnant756c69b2010-09-22 16:48:34 +00001053 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001054 map(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001055 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001056 {
1057 insert(__il.begin(), __il.end());
1058 }
1059
Marshall Clow300abfb2013-09-11 01:15:47 +00001060#if _LIBCPP_STD_VER > 11
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001061 _LIBCPP_INLINE_VISIBILITY
Marshall Clow300abfb2013-09-11 01:15:47 +00001062 map(initializer_list<value_type> __il, const allocator_type& __a)
1063 : map(__il, key_compare(), __a) {}
1064#endif
1065
Howard Hinnant756c69b2010-09-22 16:48:34 +00001066 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001067 map& operator=(initializer_list<value_type> __il)
1068 {
1069 __tree_.__assign_unique(__il.begin(), __il.end());
1070 return *this;
1071 }
1072
Eric Fiseliera85b1282017-04-18 21:08:06 +00001073#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001074
Howard Hinnant756c69b2010-09-22 16:48:34 +00001075 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001076 explicit map(const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001077 : __tree_(typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001078 {
1079 }
1080
Howard Hinnant756c69b2010-09-22 16:48:34 +00001081 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001082 map(const map& __m, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001083 : __tree_(__m.__tree_.value_comp(), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001084 {
1085 insert(__m.begin(), __m.end());
1086 }
1087
Howard Hinnant756c69b2010-09-22 16:48:34 +00001088 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001089 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001090 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001091 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001092 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001093 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001094 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001095 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001096
Howard Hinnant756c69b2010-09-22 16:48:34 +00001097 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001098 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001099 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001100 const_reverse_iterator rbegin() const _NOEXCEPT
1101 {return const_reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001102 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001103 reverse_iterator rend() _NOEXCEPT
1104 {return reverse_iterator(begin());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001105 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001106 const_reverse_iterator rend() const _NOEXCEPT
1107 {return const_reverse_iterator(begin());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001108
Howard Hinnant756c69b2010-09-22 16:48:34 +00001109 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001110 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001111 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001112 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001113 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001114 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001115 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001116 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001117
Marshall Clow425f5752017-11-15 05:51:26 +00001118 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001119 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001120 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001121 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001122 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001123 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001124
1125 mapped_type& operator[](const key_type& __k);
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001126#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001127 mapped_type& operator[](key_type&& __k);
1128#endif
1129
1130 mapped_type& at(const key_type& __k);
1131 const mapped_type& at(const key_type& __k) const;
1132
Howard Hinnant756c69b2010-09-22 16:48:34 +00001133 _LIBCPP_INLINE_VISIBILITY
Marshall Clow657cbc42016-08-17 05:58:40 +00001134 allocator_type get_allocator() const _NOEXCEPT {return allocator_type(__tree_.__alloc());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001135 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001136 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001137 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001138 value_compare value_comp() const {return value_compare(__tree_.value_comp().key_comp());}
1139
Eric Fiselierd06276b2016-03-31 02:15:15 +00001140#ifndef _LIBCPP_CXX03_LANG
1141 template <class ..._Args>
1142 _LIBCPP_INLINE_VISIBILITY
1143 pair<iterator, bool> emplace(_Args&& ...__args) {
1144 return __tree_.__emplace_unique(_VSTD::forward<_Args>(__args)...);
1145 }
Howard Hinnant74279a52010-09-04 23:28:19 +00001146
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001147 template <class ..._Args>
Eric Fiselierd06276b2016-03-31 02:15:15 +00001148 _LIBCPP_INLINE_VISIBILITY
1149 iterator emplace_hint(const_iterator __p, _Args&& ...__args) {
1150 return __tree_.__emplace_hint_unique(__p.__i_, _VSTD::forward<_Args>(__args)...);
1151 }
Howard Hinnant74279a52010-09-04 23:28:19 +00001152
Howard Hinnantc834c512011-11-29 18:15:50 +00001153 template <class _Pp,
1154 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001155 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001156 pair<iterator, bool> insert(_Pp&& __p)
1157 {return __tree_.__insert_unique(_VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001158
Howard Hinnantc834c512011-11-29 18:15:50 +00001159 template <class _Pp,
1160 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001161 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001162 iterator insert(const_iterator __pos, _Pp&& __p)
1163 {return __tree_.__insert_unique(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001164
Eric Fiselierd06276b2016-03-31 02:15:15 +00001165#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001166
Howard Hinnant756c69b2010-09-22 16:48:34 +00001167 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001168 pair<iterator, bool>
1169 insert(const value_type& __v) {return __tree_.__insert_unique(__v);}
1170
Howard Hinnant756c69b2010-09-22 16:48:34 +00001171 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001172 iterator
1173 insert(const_iterator __p, const value_type& __v)
1174 {return __tree_.__insert_unique(__p.__i_, __v);}
1175
Eric Fiselierd6143132016-04-18 01:40:45 +00001176#ifndef _LIBCPP_CXX03_LANG
Marshall Clowd430d022016-01-05 19:32:41 +00001177 _LIBCPP_INLINE_VISIBILITY
1178 pair<iterator, bool>
Eric Fiselierd06276b2016-03-31 02:15:15 +00001179 insert(value_type&& __v) {return __tree_.__insert_unique(_VSTD::move(__v));}
Marshall Clowd430d022016-01-05 19:32:41 +00001180
1181 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierd06276b2016-03-31 02:15:15 +00001182 iterator insert(const_iterator __p, value_type&& __v)
1183 {return __tree_.__insert_unique(__p.__i_, _VSTD::move(__v));}
Eric Fiseliera85b1282017-04-18 21:08:06 +00001184
1185 _LIBCPP_INLINE_VISIBILITY
1186 void insert(initializer_list<value_type> __il)
1187 {insert(__il.begin(), __il.end());}
Marshall Clowd430d022016-01-05 19:32:41 +00001188#endif
1189
Howard Hinnantc51e1022010-05-11 19:42:16 +00001190 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001191 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001192 void insert(_InputIterator __f, _InputIterator __l)
1193 {
1194 for (const_iterator __e = cend(); __f != __l; ++__f)
1195 insert(__e.__i_, *__f);
1196 }
1197
Marshall Clow3223db82015-07-07 03:37:33 +00001198#if _LIBCPP_STD_VER > 14
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001199
Marshall Clow3223db82015-07-07 03:37:33 +00001200 template <class... _Args>
1201 _LIBCPP_INLINE_VISIBILITY
1202 pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args)
1203 {
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001204 return __tree_.__emplace_unique_key_args(__k,
1205 _VSTD::piecewise_construct,
1206 _VSTD::forward_as_tuple(__k),
1207 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clow3223db82015-07-07 03:37:33 +00001208 }
1209
1210 template <class... _Args>
1211 _LIBCPP_INLINE_VISIBILITY
1212 pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args)
1213 {
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001214 return __tree_.__emplace_unique_key_args(__k,
1215 _VSTD::piecewise_construct,
1216 _VSTD::forward_as_tuple(_VSTD::move(__k)),
1217 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clow3223db82015-07-07 03:37:33 +00001218 }
1219
1220 template <class... _Args>
1221 _LIBCPP_INLINE_VISIBILITY
1222 iterator try_emplace(const_iterator __h, const key_type& __k, _Args&&... __args)
1223 {
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001224 return __tree_.__emplace_hint_unique_key_args(__h.__i_, __k,
1225 _VSTD::piecewise_construct,
1226 _VSTD::forward_as_tuple(__k),
1227 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clow3223db82015-07-07 03:37:33 +00001228 }
1229
1230 template <class... _Args>
1231 _LIBCPP_INLINE_VISIBILITY
1232 iterator try_emplace(const_iterator __h, key_type&& __k, _Args&&... __args)
1233 {
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001234 return __tree_.__emplace_hint_unique_key_args(__h.__i_, __k,
1235 _VSTD::piecewise_construct,
1236 _VSTD::forward_as_tuple(_VSTD::move(__k)),
1237 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...));
Marshall Clow3223db82015-07-07 03:37:33 +00001238 }
1239
1240 template <class _Vp>
1241 _LIBCPP_INLINE_VISIBILITY
1242 pair<iterator, bool> insert_or_assign(const key_type& __k, _Vp&& __v)
1243 {
1244 iterator __p = lower_bound(__k);
1245 if ( __p != end() && !key_comp()(__k, __p->first))
1246 {
1247 __p->second = _VSTD::forward<_Vp>(__v);
1248 return _VSTD::make_pair(__p, false);
1249 }
1250 return _VSTD::make_pair(emplace_hint(__p, __k, _VSTD::forward<_Vp>(__v)), true);
1251 }
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001252
Marshall Clow3223db82015-07-07 03:37:33 +00001253 template <class _Vp>
1254 _LIBCPP_INLINE_VISIBILITY
1255 pair<iterator, bool> insert_or_assign(key_type&& __k, _Vp&& __v)
1256 {
1257 iterator __p = lower_bound(__k);
1258 if ( __p != end() && !key_comp()(__k, __p->first))
1259 {
1260 __p->second = _VSTD::forward<_Vp>(__v);
1261 return _VSTD::make_pair(__p, false);
1262 }
1263 return _VSTD::make_pair(emplace_hint(__p, _VSTD::move(__k), _VSTD::forward<_Vp>(__v)), true);
1264 }
1265
1266 template <class _Vp>
1267 _LIBCPP_INLINE_VISIBILITY
1268 iterator insert_or_assign(const_iterator __h, const key_type& __k, _Vp&& __v)
1269 {
1270 iterator __p = lower_bound(__k);
1271 if ( __p != end() && !key_comp()(__k, __p->first))
1272 {
1273 __p->second = _VSTD::forward<_Vp>(__v);
1274 return __p;
1275 }
1276 return emplace_hint(__h, __k, _VSTD::forward<_Vp>(__v));
1277 }
1278
1279 template <class _Vp>
1280 _LIBCPP_INLINE_VISIBILITY
1281 iterator insert_or_assign(const_iterator __h, key_type&& __k, _Vp&& __v)
1282 {
1283 iterator __p = lower_bound(__k);
1284 if ( __p != end() && !key_comp()(__k, __p->first))
1285 {
1286 __p->second = _VSTD::forward<_Vp>(__v);
1287 return __p;
1288 }
1289 return emplace_hint(__h, _VSTD::move(__k), _VSTD::forward<_Vp>(__v));
1290 }
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001291
Eric Fiseliera85b1282017-04-18 21:08:06 +00001292#endif // _LIBCPP_STD_VER > 14
Marshall Clow3223db82015-07-07 03:37:33 +00001293
Howard Hinnant756c69b2010-09-22 16:48:34 +00001294 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001295 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001296 _LIBCPP_INLINE_VISIBILITY
Marshall Clow22ea5b82015-05-10 13:35:00 +00001297 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1298 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001299 size_type erase(const key_type& __k)
1300 {return __tree_.__erase_unique(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001301 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001302 iterator erase(const_iterator __f, const_iterator __l)
1303 {return __tree_.erase(__f.__i_, __l.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001304 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001305 void clear() _NOEXCEPT {__tree_.clear();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001306
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +00001307#if _LIBCPP_STD_VER > 14
1308 _LIBCPP_INLINE_VISIBILITY
1309 insert_return_type insert(node_type&& __nh)
1310 {
1311 _LIBCPP_ASSERT(__nh.empty() || __nh.get_allocator() == get_allocator(),
1312 "node_type with incompatible allocator passed to map::insert()");
1313 return __tree_.template __node_handle_insert_unique<
1314 node_type, insert_return_type>(_VSTD::move(__nh));
1315 }
1316 _LIBCPP_INLINE_VISIBILITY
1317 iterator insert(const_iterator __hint, node_type&& __nh)
1318 {
1319 _LIBCPP_ASSERT(__nh.empty() || __nh.get_allocator() == get_allocator(),
1320 "node_type with incompatible allocator passed to map::insert()");
1321 return __tree_.template __node_handle_insert_unique<node_type>(
1322 __hint.__i_, _VSTD::move(__nh));
1323 }
1324 _LIBCPP_INLINE_VISIBILITY
1325 node_type extract(key_type const& __key)
1326 {
1327 return __tree_.template __node_handle_extract<node_type>(__key);
1328 }
1329 _LIBCPP_INLINE_VISIBILITY
1330 node_type extract(const_iterator __it)
1331 {
1332 return __tree_.template __node_handle_extract<node_type>(__it.__i_);
1333 }
Louis Dionned2322c82018-11-01 14:41:37 +00001334 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001335 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001336 void merge(map<key_type, mapped_type, _Compare2, allocator_type>& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001337 {
1338 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1339 "merging container with incompatible allocator");
1340 __tree_.__node_handle_merge_unique(__source.__tree_);
1341 }
Louis Dionned2322c82018-11-01 14:41:37 +00001342 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001343 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001344 void merge(map<key_type, mapped_type, _Compare2, allocator_type>&& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001345 {
1346 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1347 "merging container with incompatible allocator");
1348 __tree_.__node_handle_merge_unique(__source.__tree_);
1349 }
Louis Dionned2322c82018-11-01 14:41:37 +00001350 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001351 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001352 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001353 {
1354 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1355 "merging container with incompatible allocator");
1356 __tree_.__node_handle_merge_unique(__source.__tree_);
1357 }
Louis Dionned2322c82018-11-01 14:41:37 +00001358 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001359 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001360 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>&& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001361 {
1362 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1363 "merging container with incompatible allocator");
1364 __tree_.__node_handle_merge_unique(__source.__tree_);
1365 }
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +00001366#endif
1367
Howard Hinnant756c69b2010-09-22 16:48:34 +00001368 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001369 void swap(map& __m)
1370 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1371 {__tree_.swap(__m.__tree_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001372
Howard Hinnant756c69b2010-09-22 16:48:34 +00001373 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001374 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001375 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001376 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001377#if _LIBCPP_STD_VER > 11
1378 template <typename _K2>
1379 _LIBCPP_INLINE_VISIBILITY
1380 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1381 find(const _K2& __k) {return __tree_.find(__k);}
1382 template <typename _K2>
1383 _LIBCPP_INLINE_VISIBILITY
1384 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1385 find(const _K2& __k) const {return __tree_.find(__k);}
1386#endif
1387
Howard Hinnant756c69b2010-09-22 16:48:34 +00001388 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001389 size_type count(const key_type& __k) const
1390 {return __tree_.__count_unique(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00001391#if _LIBCPP_STD_VER > 11
1392 template <typename _K2>
1393 _LIBCPP_INLINE_VISIBILITY
1394 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Eric Fiseliera85c9e92018-02-10 02:53:47 +00001395 count(const _K2& __k) const {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00001396#endif
Howard Hinnant756c69b2010-09-22 16:48:34 +00001397 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001398 iterator lower_bound(const key_type& __k)
1399 {return __tree_.lower_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001400 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001401 const_iterator lower_bound(const key_type& __k) const
1402 {return __tree_.lower_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001403#if _LIBCPP_STD_VER > 11
1404 template <typename _K2>
1405 _LIBCPP_INLINE_VISIBILITY
1406 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1407 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
1408
1409 template <typename _K2>
1410 _LIBCPP_INLINE_VISIBILITY
1411 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1412 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
1413#endif
1414
Howard Hinnant756c69b2010-09-22 16:48:34 +00001415 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001416 iterator upper_bound(const key_type& __k)
1417 {return __tree_.upper_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001418 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001419 const_iterator upper_bound(const key_type& __k) const
1420 {return __tree_.upper_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001421#if _LIBCPP_STD_VER > 11
1422 template <typename _K2>
1423 _LIBCPP_INLINE_VISIBILITY
1424 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
1425 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
1426 template <typename _K2>
1427 _LIBCPP_INLINE_VISIBILITY
1428 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
1429 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
1430#endif
1431
Howard Hinnant756c69b2010-09-22 16:48:34 +00001432 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001433 pair<iterator,iterator> equal_range(const key_type& __k)
1434 {return __tree_.__equal_range_unique(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001435 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001436 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
1437 {return __tree_.__equal_range_unique(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001438#if _LIBCPP_STD_VER > 11
1439 template <typename _K2>
1440 _LIBCPP_INLINE_VISIBILITY
1441 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
Eric Fiseliera85c9e92018-02-10 02:53:47 +00001442 equal_range(const _K2& __k) {return __tree_.__equal_range_multi(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001443 template <typename _K2>
1444 _LIBCPP_INLINE_VISIBILITY
1445 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
Eric Fiseliera85c9e92018-02-10 02:53:47 +00001446 equal_range(const _K2& __k) const {return __tree_.__equal_range_multi(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00001447#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00001448
1449private:
1450 typedef typename __base::__node __node;
1451 typedef typename __base::__node_allocator __node_allocator;
1452 typedef typename __base::__node_pointer __node_pointer;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001453 typedef typename __base::__node_base_pointer __node_base_pointer;
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001454 typedef typename __base::__parent_pointer __parent_pointer;
Eric Fiseliera92b0732016-02-20 07:12:17 +00001455
Howard Hinnantc834c512011-11-29 18:15:50 +00001456 typedef __map_node_destructor<__node_allocator> _Dp;
1457 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001458
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001459#ifdef _LIBCPP_CXX03_LANG
Howard Hinnantac7e7482013-07-04 20:59:16 +00001460 __node_holder __construct_node_with_key(const key_type& __k);
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001461#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00001462};
1463
Eric Fiseliera92b0732016-02-20 07:12:17 +00001464
Eric Fiselierd06276b2016-03-31 02:15:15 +00001465#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001466template <class _Key, class _Tp, class _Compare, class _Allocator>
1467map<_Key, _Tp, _Compare, _Allocator>::map(map&& __m, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001468 : __tree_(_VSTD::move(__m.__tree_), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001469{
1470 if (__a != __m.get_allocator())
1471 {
1472 const_iterator __e = cend();
1473 while (!__m.empty())
1474 __tree_.__insert_unique(__e.__i_,
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001475 __m.__tree_.remove(__m.begin().__i_)->__value_.__move());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001476 }
1477}
1478
Eric Fiseliera85b1282017-04-18 21:08:06 +00001479template <class _Key, class _Tp, class _Compare, class _Allocator>
1480_Tp&
1481map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1482{
1483 return __tree_.__emplace_unique_key_args(__k,
1484 _VSTD::piecewise_construct,
1485 _VSTD::forward_as_tuple(__k),
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001486 _VSTD::forward_as_tuple()).first->__get_value().second;
Eric Fiseliera85b1282017-04-18 21:08:06 +00001487}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001488
Eric Fiseliera85b1282017-04-18 21:08:06 +00001489template <class _Key, class _Tp, class _Compare, class _Allocator>
1490_Tp&
1491map<_Key, _Tp, _Compare, _Allocator>::operator[](key_type&& __k)
1492{
1493 return __tree_.__emplace_unique_key_args(__k,
1494 _VSTD::piecewise_construct,
1495 _VSTD::forward_as_tuple(_VSTD::move(__k)),
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001496 _VSTD::forward_as_tuple()).first->__get_value().second;
Eric Fiseliera85b1282017-04-18 21:08:06 +00001497}
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001498
Eric Fiseliera85b1282017-04-18 21:08:06 +00001499#else // _LIBCPP_CXX03_LANG
Eric Fiselierd63f38e2016-03-31 03:13:37 +00001500
Howard Hinnantc51e1022010-05-11 19:42:16 +00001501template <class _Key, class _Tp, class _Compare, class _Allocator>
1502typename map<_Key, _Tp, _Compare, _Allocator>::__node_holder
Howard Hinnantac7e7482013-07-04 20:59:16 +00001503map<_Key, _Tp, _Compare, _Allocator>::__construct_node_with_key(const key_type& __k)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001504{
1505 __node_allocator& __na = __tree_.__node_alloc();
Howard Hinnantc834c512011-11-29 18:15:50 +00001506 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001507 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__get_value().first), __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001508 __h.get_deleter().__first_constructed = true;
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001509 __node_traits::construct(__na, _VSTD::addressof(__h->__value_.__get_value().second));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001510 __h.get_deleter().__second_constructed = true;
Dimitry Andric830fb602015-08-19 06:43:33 +00001511 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
Howard Hinnantc51e1022010-05-11 19:42:16 +00001512}
1513
Howard Hinnantc51e1022010-05-11 19:42:16 +00001514template <class _Key, class _Tp, class _Compare, class _Allocator>
1515_Tp&
1516map<_Key, _Tp, _Compare, _Allocator>::operator[](const key_type& __k)
1517{
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001518 __parent_pointer __parent;
1519 __node_base_pointer& __child = __tree_.__find_equal(__parent, __k);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001520 __node_pointer __r = static_cast<__node_pointer>(__child);
1521 if (__child == nullptr)
1522 {
Howard Hinnantac7e7482013-07-04 20:59:16 +00001523 __node_holder __h = __construct_node_with_key(__k);
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001524 __tree_.__insert_node_at(__parent, __child, static_cast<__node_base_pointer>(__h.get()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00001525 __r = __h.release();
1526 }
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001527 return __r->__value_.__get_value().second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001528}
1529
Eric Fiseliera85b1282017-04-18 21:08:06 +00001530#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001531
1532template <class _Key, class _Tp, class _Compare, class _Allocator>
1533_Tp&
1534map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k)
1535{
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001536 __parent_pointer __parent;
1537 __node_base_pointer& __child = __tree_.__find_equal(__parent, __k);
Howard Hinnant72f73582010-08-11 17:04:31 +00001538#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001539 if (__child == nullptr)
1540 throw out_of_range("map::at: key not found");
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001541#endif // _LIBCPP_NO_EXCEPTIONS
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001542 return static_cast<__node_pointer>(__child)->__value_.__get_value().second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001543}
1544
1545template <class _Key, class _Tp, class _Compare, class _Allocator>
1546const _Tp&
1547map<_Key, _Tp, _Compare, _Allocator>::at(const key_type& __k) const
1548{
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001549 __parent_pointer __parent;
1550 __node_base_pointer __child = __tree_.__find_equal(__parent, __k);
Howard Hinnant72f73582010-08-11 17:04:31 +00001551#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001552 if (__child == nullptr)
1553 throw out_of_range("map::at: key not found");
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001554#endif // _LIBCPP_NO_EXCEPTIONS
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00001555 return static_cast<__node_pointer>(__child)->__value_.__get_value().second;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001556}
1557
Howard Hinnantc51e1022010-05-11 19:42:16 +00001558
1559template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001560inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001561bool
1562operator==(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1563 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1564{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001565 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001566}
1567
1568template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001569inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001570bool
1571operator< (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1572 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1573{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001574 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001575}
1576
1577template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001578inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001579bool
1580operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1581 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1582{
1583 return !(__x == __y);
1584}
1585
1586template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001587inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001588bool
1589operator> (const map<_Key, _Tp, _Compare, _Allocator>& __x,
1590 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1591{
1592 return __y < __x;
1593}
1594
1595template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001596inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001597bool
1598operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1599 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1600{
1601 return !(__x < __y);
1602}
1603
1604template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001605inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001606bool
1607operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __x,
1608 const map<_Key, _Tp, _Compare, _Allocator>& __y)
1609{
1610 return !(__y < __x);
1611}
1612
1613template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001614inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001615void
1616swap(map<_Key, _Tp, _Compare, _Allocator>& __x,
1617 map<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001618 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001619{
1620 __x.swap(__y);
1621}
1622
Marshall Clow29b53f22018-12-14 18:49:35 +00001623#if _LIBCPP_STD_VER > 17
1624template <class _Key, class _Tp, class _Compare, class _Allocator, class _Predicate>
1625inline _LIBCPP_INLINE_VISIBILITY
1626void erase_if(map<_Key, _Tp, _Compare, _Allocator>& __c, _Predicate __pred)
1627{ __libcpp_erase_if_container(__c, __pred); }
1628#endif
1629
1630
Howard Hinnantc51e1022010-05-11 19:42:16 +00001631template <class _Key, class _Tp, class _Compare = less<_Key>,
1632 class _Allocator = allocator<pair<const _Key, _Tp> > >
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00001633class _LIBCPP_TEMPLATE_VIS multimap
Howard Hinnantc51e1022010-05-11 19:42:16 +00001634{
1635public:
1636 // types:
1637 typedef _Key key_type;
1638 typedef _Tp mapped_type;
1639 typedef pair<const key_type, mapped_type> value_type;
1640 typedef _Compare key_compare;
1641 typedef _Allocator allocator_type;
1642 typedef value_type& reference;
1643 typedef const value_type& const_reference;
1644
Louis Dionne878a3a82018-12-06 21:46:17 +00001645 static_assert(sizeof(__diagnose_non_const_comparator<_Key, _Compare>()), "");
Marshall Clow5128cf32015-11-26 01:24:04 +00001646 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
1647 "Allocator::value_type must be same type as value_type");
1648
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00001649 class _LIBCPP_TEMPLATE_VIS value_compare
Howard Hinnantc51e1022010-05-11 19:42:16 +00001650 : public binary_function<value_type, value_type, bool>
1651 {
1652 friend class multimap;
1653 protected:
1654 key_compare comp;
1655
Howard Hinnant756c69b2010-09-22 16:48:34 +00001656 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001657 value_compare(key_compare c) : comp(c) {}
1658 public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00001659 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001660 bool operator()(const value_type& __x, const value_type& __y) const
1661 {return comp(__x.first, __y.first);}
1662 };
1663
1664private:
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001665
Howard Hinnant89f8b792013-09-30 19:08:22 +00001666 typedef _VSTD::__value_type<key_type, mapped_type> __value_type;
Howard Hinnant90b91592013-07-05 18:06:00 +00001667 typedef __map_value_compare<key_type, __value_type, key_compare> __vc;
Marshall Clow940e01c2015-04-07 05:21:38 +00001668 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>,
1669 __value_type>::type __allocator_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001670 typedef __tree<__value_type, __vc, __allocator_type> __base;
1671 typedef typename __base::__node_traits __node_traits;
1672 typedef allocator_traits<allocator_type> __alloc_traits;
1673
1674 __base __tree_;
1675
1676public:
1677 typedef typename __alloc_traits::pointer pointer;
1678 typedef typename __alloc_traits::const_pointer const_pointer;
1679 typedef typename __alloc_traits::size_type size_type;
1680 typedef typename __alloc_traits::difference_type difference_type;
1681 typedef __map_iterator<typename __base::iterator> iterator;
1682 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001683 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
1684 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001685
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +00001686#if _LIBCPP_STD_VER > 14
1687 typedef __map_node_handle<typename __base::__node, allocator_type> node_type;
1688#endif
1689
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001690 template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
1691 friend class _LIBCPP_TEMPLATE_VIS map;
1692 template <class _Key2, class _Value2, class _Comp2, class _Alloc2>
1693 friend class _LIBCPP_TEMPLATE_VIS multimap;
1694
Howard Hinnant756c69b2010-09-22 16:48:34 +00001695 _LIBCPP_INLINE_VISIBILITY
Marshall Clow7086a5a2014-03-10 04:50:10 +00001696 multimap()
1697 _NOEXCEPT_(
1698 is_nothrow_default_constructible<allocator_type>::value &&
1699 is_nothrow_default_constructible<key_compare>::value &&
1700 is_nothrow_copy_constructible<key_compare>::value)
1701 : __tree_(__vc(key_compare())) {}
1702
1703 _LIBCPP_INLINE_VISIBILITY
1704 explicit multimap(const key_compare& __comp)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001705 _NOEXCEPT_(
1706 is_nothrow_default_constructible<allocator_type>::value &&
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001707 is_nothrow_copy_constructible<key_compare>::value)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001708 : __tree_(__vc(__comp)) {}
1709
Howard Hinnant756c69b2010-09-22 16:48:34 +00001710 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001711 explicit multimap(const key_compare& __comp, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001712 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001713
1714 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001715 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001716 multimap(_InputIterator __f, _InputIterator __l,
1717 const key_compare& __comp = key_compare())
1718 : __tree_(__vc(__comp))
1719 {
1720 insert(__f, __l);
1721 }
1722
1723 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001724 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001725 multimap(_InputIterator __f, _InputIterator __l,
1726 const key_compare& __comp, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001727 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001728 {
1729 insert(__f, __l);
1730 }
1731
Marshall Clow300abfb2013-09-11 01:15:47 +00001732#if _LIBCPP_STD_VER > 11
1733 template <class _InputIterator>
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001734 _LIBCPP_INLINE_VISIBILITY
Marshall Clow300abfb2013-09-11 01:15:47 +00001735 multimap(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
1736 : multimap(__f, __l, key_compare(), __a) {}
1737#endif
1738
Howard Hinnant756c69b2010-09-22 16:48:34 +00001739 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001740 multimap(const multimap& __m)
1741 : __tree_(__m.__tree_.value_comp(),
1742 __alloc_traits::select_on_container_copy_construction(__m.__tree_.__alloc()))
1743 {
1744 insert(__m.begin(), __m.end());
1745 }
1746
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001747 _LIBCPP_INLINE_VISIBILITY
1748 multimap& operator=(const multimap& __m)
1749 {
Marshall Clow476d3f42016-07-18 13:19:00 +00001750#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001751 __tree_ = __m.__tree_;
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001752#else
Marshall Clowdb3cfcb2014-02-08 04:03:14 +00001753 if (this != &__m) {
1754 __tree_.clear();
1755 __tree_.value_comp() = __m.__tree_.value_comp();
1756 __tree_.__copy_assign_alloc(__m.__tree_);
1757 insert(__m.begin(), __m.end());
1758 }
Howard Hinnant2d0046b2013-06-19 21:29:40 +00001759#endif
Howard Hinnantd3a657f2011-07-01 19:24:36 +00001760 return *this;
1761 }
1762
Eric Fiseliera85b1282017-04-18 21:08:06 +00001763#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001764
Howard Hinnant756c69b2010-09-22 16:48:34 +00001765 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001766 multimap(multimap&& __m)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001767 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001768 : __tree_(_VSTD::move(__m.__tree_))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001769 {
1770 }
1771
1772 multimap(multimap&& __m, const allocator_type& __a);
1773
Howard Hinnant756c69b2010-09-22 16:48:34 +00001774 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant33711792011-08-12 21:56:02 +00001775 multimap& operator=(multimap&& __m)
1776 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1777 {
1778 __tree_ = _VSTD::move(__m.__tree_);
1779 return *this;
1780 }
1781
Howard Hinnant33711792011-08-12 21:56:02 +00001782 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001783 multimap(initializer_list<value_type> __il, const key_compare& __comp = key_compare())
1784 : __tree_(__vc(__comp))
1785 {
1786 insert(__il.begin(), __il.end());
1787 }
1788
Howard Hinnant756c69b2010-09-22 16:48:34 +00001789 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001790 multimap(initializer_list<value_type> __il, const key_compare& __comp, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001791 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001792 {
1793 insert(__il.begin(), __il.end());
1794 }
1795
Marshall Clow300abfb2013-09-11 01:15:47 +00001796#if _LIBCPP_STD_VER > 11
Eric Fiseliercf8c0212017-01-05 06:06:18 +00001797 _LIBCPP_INLINE_VISIBILITY
Marshall Clow300abfb2013-09-11 01:15:47 +00001798 multimap(initializer_list<value_type> __il, const allocator_type& __a)
1799 : multimap(__il, key_compare(), __a) {}
1800#endif
1801
Howard Hinnant756c69b2010-09-22 16:48:34 +00001802 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001803 multimap& operator=(initializer_list<value_type> __il)
1804 {
1805 __tree_.__assign_multi(__il.begin(), __il.end());
1806 return *this;
1807 }
Howard Hinnant33711792011-08-12 21:56:02 +00001808
Eric Fiseliera85b1282017-04-18 21:08:06 +00001809#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001810
Howard Hinnant756c69b2010-09-22 16:48:34 +00001811 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001812 explicit multimap(const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001813 : __tree_(typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001814 {
1815 }
1816
Howard Hinnant756c69b2010-09-22 16:48:34 +00001817 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001818 multimap(const multimap& __m, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00001819 : __tree_(__m.__tree_.value_comp(), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00001820 {
1821 insert(__m.begin(), __m.end());
1822 }
1823
Howard Hinnant756c69b2010-09-22 16:48:34 +00001824 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001825 iterator begin() _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001826 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001827 const_iterator begin() const _NOEXCEPT {return __tree_.begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001828 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001829 iterator end() _NOEXCEPT {return __tree_.end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001830 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001831 const_iterator end() const _NOEXCEPT {return __tree_.end();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001832
Howard Hinnant756c69b2010-09-22 16:48:34 +00001833 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001834 reverse_iterator rbegin() _NOEXCEPT {return reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001835 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001836 const_reverse_iterator rbegin() const _NOEXCEPT
1837 {return const_reverse_iterator(end());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001838 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001839 reverse_iterator rend() _NOEXCEPT {return reverse_iterator(begin());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001840 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001841 const_reverse_iterator rend() const _NOEXCEPT
1842 {return const_reverse_iterator(begin());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001843
Howard Hinnant756c69b2010-09-22 16:48:34 +00001844 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001845 const_iterator cbegin() const _NOEXCEPT {return begin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001846 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001847 const_iterator cend() const _NOEXCEPT {return end();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001848 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001849 const_reverse_iterator crbegin() const _NOEXCEPT {return rbegin();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001850 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001851 const_reverse_iterator crend() const _NOEXCEPT {return rend();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001852
Marshall Clow425f5752017-11-15 05:51:26 +00001853 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001854 bool empty() const _NOEXCEPT {return __tree_.size() == 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001855 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001856 size_type size() const _NOEXCEPT {return __tree_.size();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001857 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001858 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001859
Howard Hinnant756c69b2010-09-22 16:48:34 +00001860 _LIBCPP_INLINE_VISIBILITY
Marshall Clow657cbc42016-08-17 05:58:40 +00001861 allocator_type get_allocator() const _NOEXCEPT {return allocator_type(__tree_.__alloc());}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001862 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001863 key_compare key_comp() const {return __tree_.value_comp().key_comp();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001864 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00001865 value_compare value_comp() const
1866 {return value_compare(__tree_.value_comp().key_comp());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001867
Eric Fiselierd06276b2016-03-31 02:15:15 +00001868#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant74279a52010-09-04 23:28:19 +00001869
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001870 template <class ..._Args>
Eric Fiselierd06276b2016-03-31 02:15:15 +00001871 _LIBCPP_INLINE_VISIBILITY
1872 iterator emplace(_Args&& ...__args) {
1873 return __tree_.__emplace_multi(_VSTD::forward<_Args>(__args)...);
1874 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00001875
Howard Hinnant29eb9b82012-05-25 22:04:21 +00001876 template <class ..._Args>
Eric Fiselierd06276b2016-03-31 02:15:15 +00001877 _LIBCPP_INLINE_VISIBILITY
1878 iterator emplace_hint(const_iterator __p, _Args&& ...__args) {
1879 return __tree_.__emplace_hint_multi(__p.__i_, _VSTD::forward<_Args>(__args)...);
1880 }
Howard Hinnant74279a52010-09-04 23:28:19 +00001881
Howard Hinnantc834c512011-11-29 18:15:50 +00001882 template <class _Pp,
1883 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001884 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001885 iterator insert(_Pp&& __p)
1886 {return __tree_.__insert_multi(_VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001887
Howard Hinnantc834c512011-11-29 18:15:50 +00001888 template <class _Pp,
1889 class = typename enable_if<is_constructible<value_type, _Pp>::value>::type>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001890 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc834c512011-11-29 18:15:50 +00001891 iterator insert(const_iterator __pos, _Pp&& __p)
1892 {return __tree_.__insert_multi(__pos.__i_, _VSTD::forward<_Pp>(__p));}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001893
Eric Fiselierd6143132016-04-18 01:40:45 +00001894 _LIBCPP_INLINE_VISIBILITY
1895 iterator insert(value_type&& __v)
1896 {return __tree_.__insert_multi(_VSTD::move(__v));}
1897
1898 _LIBCPP_INLINE_VISIBILITY
1899 iterator insert(const_iterator __p, value_type&& __v)
1900 {return __tree_.__insert_multi(__p.__i_, _VSTD::move(__v));}
1901
Eric Fiseliera85b1282017-04-18 21:08:06 +00001902
1903 _LIBCPP_INLINE_VISIBILITY
1904 void insert(initializer_list<value_type> __il)
1905 {insert(__il.begin(), __il.end());}
1906
Eric Fiselierd06276b2016-03-31 02:15:15 +00001907#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001908
Howard Hinnant756c69b2010-09-22 16:48:34 +00001909 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001910 iterator insert(const value_type& __v) {return __tree_.__insert_multi(__v);}
1911
Howard Hinnant756c69b2010-09-22 16:48:34 +00001912 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001913 iterator insert(const_iterator __p, const value_type& __v)
1914 {return __tree_.__insert_multi(__p.__i_, __v);}
1915
1916 template <class _InputIterator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001917 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001918 void insert(_InputIterator __f, _InputIterator __l)
1919 {
1920 for (const_iterator __e = cend(); __f != __l; ++__f)
1921 __tree_.__insert_multi(__e.__i_, *__f);
1922 }
1923
Howard Hinnant756c69b2010-09-22 16:48:34 +00001924 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001925 iterator erase(const_iterator __p) {return __tree_.erase(__p.__i_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001926 _LIBCPP_INLINE_VISIBILITY
Marshall Clow22ea5b82015-05-10 13:35:00 +00001927 iterator erase(iterator __p) {return __tree_.erase(__p.__i_);}
1928 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001929 size_type erase(const key_type& __k) {return __tree_.__erase_multi(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001930 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001931 iterator erase(const_iterator __f, const_iterator __l)
1932 {return __tree_.erase(__f.__i_, __l.__i_);}
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +00001933
1934#if _LIBCPP_STD_VER > 14
1935 _LIBCPP_INLINE_VISIBILITY
1936 iterator insert(node_type&& __nh)
1937 {
1938 _LIBCPP_ASSERT(__nh.empty() || __nh.get_allocator() == get_allocator(),
1939 "node_type with incompatible allocator passed to multimap::insert()");
1940 return __tree_.template __node_handle_insert_multi<node_type>(
1941 _VSTD::move(__nh));
1942 }
1943 _LIBCPP_INLINE_VISIBILITY
1944 iterator insert(const_iterator __hint, node_type&& __nh)
1945 {
1946 _LIBCPP_ASSERT(__nh.empty() || __nh.get_allocator() == get_allocator(),
1947 "node_type with incompatible allocator passed to multimap::insert()");
1948 return __tree_.template __node_handle_insert_multi<node_type>(
1949 __hint.__i_, _VSTD::move(__nh));
1950 }
1951 _LIBCPP_INLINE_VISIBILITY
1952 node_type extract(key_type const& __key)
1953 {
1954 return __tree_.template __node_handle_extract<node_type>(__key);
1955 }
1956 _LIBCPP_INLINE_VISIBILITY
1957 node_type extract(const_iterator __it)
1958 {
1959 return __tree_.template __node_handle_extract<node_type>(
1960 __it.__i_);
1961 }
Louis Dionned2322c82018-11-01 14:41:37 +00001962 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001963 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001964 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001965 {
1966 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1967 "merging container with incompatible allocator");
1968 return __tree_.__node_handle_merge_multi(__source.__tree_);
1969 }
Louis Dionned2322c82018-11-01 14:41:37 +00001970 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001971 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001972 void merge(multimap<key_type, mapped_type, _Compare2, allocator_type>&& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001973 {
1974 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1975 "merging container with incompatible allocator");
1976 return __tree_.__node_handle_merge_multi(__source.__tree_);
1977 }
Louis Dionned2322c82018-11-01 14:41:37 +00001978 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001979 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001980 void merge(map<key_type, mapped_type, _Compare2, allocator_type>& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001981 {
1982 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1983 "merging container with incompatible allocator");
1984 return __tree_.__node_handle_merge_multi(__source.__tree_);
1985 }
Louis Dionned2322c82018-11-01 14:41:37 +00001986 template <class _Compare2>
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001987 _LIBCPP_INLINE_VISIBILITY
Louis Dionned2322c82018-11-01 14:41:37 +00001988 void merge(map<key_type, mapped_type, _Compare2, allocator_type>&& __source)
Erik Pilkington82a65ad2018-10-31 17:31:35 +00001989 {
1990 _LIBCPP_ASSERT(__source.get_allocator() == get_allocator(),
1991 "merging container with incompatible allocator");
1992 return __tree_.__node_handle_merge_multi(__source.__tree_);
1993 }
Erik Pilkingtonc37a3d82018-08-01 01:33:38 +00001994#endif
1995
Howard Hinnant756c69b2010-09-22 16:48:34 +00001996 _LIBCPP_INLINE_VISIBILITY
Marshall Clowde1312a2018-08-22 04:28:43 +00001997 void clear() _NOEXCEPT {__tree_.clear();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001998
Howard Hinnant756c69b2010-09-22 16:48:34 +00001999 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00002000 void swap(multimap& __m)
2001 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
2002 {__tree_.swap(__m.__tree_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002003
Howard Hinnant756c69b2010-09-22 16:48:34 +00002004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002005 iterator find(const key_type& __k) {return __tree_.find(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002006 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002007 const_iterator find(const key_type& __k) const {return __tree_.find(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002008#if _LIBCPP_STD_VER > 11
2009 template <typename _K2>
2010 _LIBCPP_INLINE_VISIBILITY
2011 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2012 find(const _K2& __k) {return __tree_.find(__k);}
2013 template <typename _K2>
2014 _LIBCPP_INLINE_VISIBILITY
2015 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2016 find(const _K2& __k) const {return __tree_.find(__k);}
2017#endif
2018
Howard Hinnant756c69b2010-09-22 16:48:34 +00002019 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002020 size_type count(const key_type& __k) const
2021 {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00002022#if _LIBCPP_STD_VER > 11
2023 template <typename _K2>
2024 _LIBCPP_INLINE_VISIBILITY
2025 typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type
Marshall Clow141e47b2015-06-30 18:15:41 +00002026 count(const _K2& __k) const {return __tree_.__count_multi(__k);}
Marshall Clowe6a5f522014-08-24 23:54:16 +00002027#endif
Howard Hinnant756c69b2010-09-22 16:48:34 +00002028 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002029 iterator lower_bound(const key_type& __k)
2030 {return __tree_.lower_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002031 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002032 const_iterator lower_bound(const key_type& __k) const
2033 {return __tree_.lower_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002034#if _LIBCPP_STD_VER > 11
2035 template <typename _K2>
2036 _LIBCPP_INLINE_VISIBILITY
2037 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2038 lower_bound(const _K2& __k) {return __tree_.lower_bound(__k);}
2039
2040 template <typename _K2>
2041 _LIBCPP_INLINE_VISIBILITY
2042 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2043 lower_bound(const _K2& __k) const {return __tree_.lower_bound(__k);}
2044#endif
2045
Howard Hinnant756c69b2010-09-22 16:48:34 +00002046 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002047 iterator upper_bound(const key_type& __k)
2048 {return __tree_.upper_bound(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002049 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002050 const_iterator upper_bound(const key_type& __k) const
2051 {return __tree_.upper_bound(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002052#if _LIBCPP_STD_VER > 11
2053 template <typename _K2>
2054 _LIBCPP_INLINE_VISIBILITY
2055 typename enable_if<__is_transparent<_Compare, _K2>::value,iterator>::type
2056 upper_bound(const _K2& __k) {return __tree_.upper_bound(__k);}
2057 template <typename _K2>
2058 _LIBCPP_INLINE_VISIBILITY
2059 typename enable_if<__is_transparent<_Compare, _K2>::value,const_iterator>::type
2060 upper_bound(const _K2& __k) const {return __tree_.upper_bound(__k);}
2061#endif
2062
Howard Hinnant756c69b2010-09-22 16:48:34 +00002063 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002064 pair<iterator,iterator> equal_range(const key_type& __k)
2065 {return __tree_.__equal_range_multi(__k);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00002066 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002067 pair<const_iterator,const_iterator> equal_range(const key_type& __k) const
2068 {return __tree_.__equal_range_multi(__k);}
Marshall Clowebb57322013-08-13 22:18:47 +00002069#if _LIBCPP_STD_VER > 11
2070 template <typename _K2>
2071 _LIBCPP_INLINE_VISIBILITY
2072 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<iterator,iterator>>::type
2073 equal_range(const _K2& __k) {return __tree_.__equal_range_multi(__k);}
2074 template <typename _K2>
2075 _LIBCPP_INLINE_VISIBILITY
2076 typename enable_if<__is_transparent<_Compare, _K2>::value,pair<const_iterator,const_iterator>>::type
2077 equal_range(const _K2& __k) const {return __tree_.__equal_range_multi(__k);}
2078#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002079
2080private:
2081 typedef typename __base::__node __node;
2082 typedef typename __base::__node_allocator __node_allocator;
2083 typedef typename __base::__node_pointer __node_pointer;
Eric Fiseliera92b0732016-02-20 07:12:17 +00002084
Howard Hinnantc834c512011-11-29 18:15:50 +00002085 typedef __map_node_destructor<__node_allocator> _Dp;
2086 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002087};
2088
Eric Fiselierd06276b2016-03-31 02:15:15 +00002089#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00002090template <class _Key, class _Tp, class _Compare, class _Allocator>
2091multimap<_Key, _Tp, _Compare, _Allocator>::multimap(multimap&& __m, const allocator_type& __a)
Marshall Clow657cbc42016-08-17 05:58:40 +00002092 : __tree_(_VSTD::move(__m.__tree_), typename __base::allocator_type(__a))
Howard Hinnantc51e1022010-05-11 19:42:16 +00002093{
2094 if (__a != __m.get_allocator())
2095 {
2096 const_iterator __e = cend();
2097 while (!__m.empty())
2098 __tree_.__insert_multi(__e.__i_,
Erik Pilkingtond3fe2992018-06-04 20:38:23 +00002099 _VSTD::move(__m.__tree_.remove(__m.begin().__i_)->__value_.__move()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00002100 }
2101}
Eric Fiselierd06276b2016-03-31 02:15:15 +00002102#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002103
2104template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002105inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002106bool
2107operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2108 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2109{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002110 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnantc51e1022010-05-11 19:42:16 +00002111}
2112
2113template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002114inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002115bool
2116operator< (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2117 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2118{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00002119 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnantc51e1022010-05-11 19:42:16 +00002120}
2121
2122template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002123inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002124bool
2125operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2126 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2127{
2128 return !(__x == __y);
2129}
2130
2131template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002132inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002133bool
2134operator> (const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2135 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2136{
2137 return __y < __x;
2138}
2139
2140template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002141inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002142bool
2143operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2144 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2145{
2146 return !(__x < __y);
2147}
2148
2149template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002150inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002151bool
2152operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2153 const multimap<_Key, _Tp, _Compare, _Allocator>& __y)
2154{
2155 return !(__y < __x);
2156}
2157
2158template <class _Key, class _Tp, class _Compare, class _Allocator>
Howard Hinnant756c69b2010-09-22 16:48:34 +00002159inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00002160void
2161swap(multimap<_Key, _Tp, _Compare, _Allocator>& __x,
2162 multimap<_Key, _Tp, _Compare, _Allocator>& __y)
Howard Hinnant2f1ea9c2011-06-04 14:31:57 +00002163 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnantc51e1022010-05-11 19:42:16 +00002164{
2165 __x.swap(__y);
2166}
2167
Marshall Clow29b53f22018-12-14 18:49:35 +00002168#if _LIBCPP_STD_VER > 17
2169template <class _Key, class _Tp, class _Compare, class _Allocator, class _Predicate>
2170inline _LIBCPP_INLINE_VISIBILITY
2171void erase_if(multimap<_Key, _Tp, _Compare, _Allocator>& __c, _Predicate __pred)
2172{ __libcpp_erase_if_container(__c, __pred); }
2173#endif
2174
Howard Hinnantc51e1022010-05-11 19:42:16 +00002175_LIBCPP_END_NAMESPACE_STD
2176
2177#endif // _LIBCPP_MAP