]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/bits/stl_multimap.h
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / include / bits / stl_multimap.h
CommitLineData
1d61409b 1// Multimap implementation -*- C++ -*-
2
f1717362 3// Copyright (C) 2001-2016 Free Software Foundation, Inc.
1d61409b 4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
1d61409b 9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
6bc9506f 16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
1d61409b 19
6bc9506f 20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
1d61409b 24
1d487aca 25/*
26 *
27 * Copyright (c) 1994
28 * Hewlett-Packard Company
29 *
30 * Permission to use, copy, modify, distribute and sell this software
31 * and its documentation for any purpose is hereby granted without fee,
32 * provided that the above copyright notice appear in all copies and
33 * that both that copyright notice and this permission notice appear
34 * in supporting documentation. Hewlett-Packard Company makes no
35 * representations about the suitability of this software for any
36 * purpose. It is provided "as is" without express or implied warranty.
37 *
38 *
39 * Copyright (c) 1996,1997
40 * Silicon Graphics Computer Systems, Inc.
41 *
42 * Permission to use, copy, modify, distribute and sell this software
43 * and its documentation for any purpose is hereby granted without fee,
44 * provided that the above copyright notice appear in all copies and
45 * that both that copyright notice and this permission notice appear
46 * in supporting documentation. Silicon Graphics makes no
47 * representations about the suitability of this software for any
48 * purpose. It is provided "as is" without express or implied warranty.
49 */
50
5846aeac 51/** @file bits/stl_multimap.h
7a472ef1 52 * This is an internal header file, included by other library headers.
5846aeac 53 * Do not attempt to use it directly. @headername{map}
1d487aca 54 */
55
f142a34a 56#ifndef _STL_MULTIMAP_H
57#define _STL_MULTIMAP_H 1
1d487aca 58
40b55285 59#include <bits/concept_check.h>
0c8766b1 60#if __cplusplus >= 201103L
b23fdac1 61#include <initializer_list>
fbb4cdfc 62#endif
1d487aca 63
2948dd21 64namespace std _GLIBCXX_VISIBILITY(default)
65{
66_GLIBCXX_BEGIN_NAMESPACE_CONTAINER
1069247d 67
32bb2cd7 68 /**
69 * @brief A standard container made up of (key,value) pairs, which can be
70 * retrieved based on a key, in logarithmic time.
f344810f 71 *
48e3f567 72 * @ingroup associative_containers
f344810f 73 *
7184845c 74 * @tparam _Key Type of key objects.
75 * @tparam _Tp Type of mapped objects.
76 * @tparam _Compare Comparison function object type, defaults to less<_Key>.
77 * @tparam _Alloc Allocator type, defaults to
78 * allocator<pair<const _Key, _Tp>.
79 *
32bb2cd7 80 * Meets the requirements of a <a href="tables.html#65">container</a>, a
81 * <a href="tables.html#66">reversible container</a>, and an
82 * <a href="tables.html#69">associative container</a> (using equivalent
83 * keys). For a @c multimap<Key,T> the key_type is Key, the mapped_type
84 * is T, and the value_type is std::pair<const Key,T>.
f344810f 85 *
32bb2cd7 86 * Multimaps support bidirectional iterators.
f344810f 87 *
32bb2cd7 88 * The private tree data is declared exactly the same way for map and
89 * multimap; the distinction is made entirely in how the tree functions are
90 * called (*_unique versus *_equal, same as the standard).
32bb2cd7 91 */
2263cabb 92 template <typename _Key, typename _Tp,
93 typename _Compare = std::less<_Key>,
94 typename _Alloc = std::allocator<std::pair<const _Key, _Tp> > >
32bb2cd7 95 class multimap
b9156b5c 96 {
b9156b5c 97 public:
98 typedef _Key key_type;
99 typedef _Tp mapped_type;
be7e699b 100 typedef std::pair<const _Key, _Tp> value_type;
b9156b5c 101 typedef _Compare key_compare;
171a395a 102 typedef _Alloc allocator_type;
bae9b8af 103
171a395a 104 private:
105 // concept requirements
106 typedef typename _Alloc::value_type _Alloc_value_type;
107 __glibcxx_class_requires(_Tp, _SGIAssignableConcept)
108 __glibcxx_class_requires4(_Compare, bool, _Key, _Key,
109 _BinaryFunctionConcept)
6b9314a8 110 __glibcxx_class_requires2(value_type, _Alloc_value_type, _SameTypeConcept)
171a395a 111
112 public:
b9156b5c 113 class value_compare
be7e699b 114 : public std::binary_function<value_type, value_type, bool>
32bb2cd7 115 {
171a395a 116 friend class multimap<_Key, _Tp, _Compare, _Alloc>;
32bb2cd7 117 protected:
b9156b5c 118 _Compare comp;
bae9b8af 119
b9156b5c 120 value_compare(_Compare __c)
62ba3194 121 : comp(__c) { }
bae9b8af 122
32bb2cd7 123 public:
b9156b5c 124 bool operator()(const value_type& __x, const value_type& __y) const
125 { return comp(__x.first, __y.first); }
126 };
bae9b8af 127
b9156b5c 128 private:
0aeadebf 129 /// This turns a red-black tree into a [multi]map.
709dc991 130 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
131 rebind<value_type>::other _Pair_alloc_type;
171a395a 132
133 typedef _Rb_tree<key_type, value_type, _Select1st<value_type>,
134 key_compare, _Pair_alloc_type> _Rep_type;
0aeadebf 135 /// The actual tree structure.
b9156b5c 136 _Rep_type _M_t;
bae9b8af 137
709dc991 138 typedef __gnu_cxx::__alloc_traits<_Pair_alloc_type> _Alloc_traits;
139
b9156b5c 140 public:
141 // many of these are specified differently in ISO, but the following are
142 // "functionally equivalent"
709dc991 143 typedef typename _Alloc_traits::pointer pointer;
144 typedef typename _Alloc_traits::const_pointer const_pointer;
145 typedef typename _Alloc_traits::reference reference;
146 typedef typename _Alloc_traits::const_reference const_reference;
b9156b5c 147 typedef typename _Rep_type::iterator iterator;
148 typedef typename _Rep_type::const_iterator const_iterator;
149 typedef typename _Rep_type::size_type size_type;
150 typedef typename _Rep_type::difference_type difference_type;
b9156b5c 151 typedef typename _Rep_type::reverse_iterator reverse_iterator;
152 typedef typename _Rep_type::const_reverse_iterator const_reverse_iterator;
bae9b8af 153
b9156b5c 154 // [23.3.2] construct/copy/destroy
155 // (get_allocator() is also listed in this section)
fc04fffc 156
b9156b5c 157 /**
158 * @brief Default constructor creates no elements.
159 */
160 multimap()
96177d13 161#if __cplusplus >= 201103L
162 noexcept(is_nothrow_default_constructible<allocator_type>::value)
163#endif
707bff49 164 : _M_t() { }
bae9b8af 165
b9156b5c 166 /**
707bff49 167 * @brief Creates a %multimap with no elements.
e12e4f3b 168 * @param __comp A comparison object.
169 * @param __a An allocator object.
b9156b5c 170 */
171 explicit
172 multimap(const _Compare& __comp,
173 const allocator_type& __a = allocator_type())
852b4cc2 174 : _M_t(__comp, _Pair_alloc_type(__a)) { }
bae9b8af 175
b9156b5c 176 /**
177 * @brief %Multimap copy constructor.
e12e4f3b 178 * @param __x A %multimap of identical element and allocator types.
b9156b5c 179 *
707bff49 180 * The newly-created %multimap uses a copy of the allocation object
e12e4f3b 181 * used by @a __x.
b9156b5c 182 */
183 multimap(const multimap& __x)
32bb2cd7 184 : _M_t(__x._M_t) { }
bae9b8af 185
0c8766b1 186#if __cplusplus >= 201103L
707bff49 187 /**
188 * @brief %Multimap move constructor.
e12e4f3b 189 * @param __x A %multimap of identical element and allocator types.
707bff49 190 *
e12e4f3b 191 * The newly-created %multimap contains the exact contents of @a __x.
192 * The contents of @a __x are a valid, but unspecified %multimap.
707bff49 193 */
194 multimap(multimap&& __x)
c95bf15b 195 noexcept(is_nothrow_copy_constructible<_Compare>::value)
d01a2eb2 196 : _M_t(std::move(__x._M_t)) { }
b23fdac1 197
198 /**
199 * @brief Builds a %multimap from an initializer_list.
e12e4f3b 200 * @param __l An initializer_list.
201 * @param __comp A comparison functor.
202 * @param __a An allocator object.
b23fdac1 203 *
204 * Create a %multimap consisting of copies of the elements from
205 * the initializer_list. This is linear in N if the list is already
206 * sorted, and NlogN otherwise (where N is @a __l.size()).
207 */
208 multimap(initializer_list<value_type> __l,
209 const _Compare& __comp = _Compare(),
210 const allocator_type& __a = allocator_type())
852b4cc2 211 : _M_t(__comp, _Pair_alloc_type(__a))
b23fdac1 212 { _M_t._M_insert_equal(__l.begin(), __l.end()); }
709dc991 213
214 /// Allocator-extended default constructor.
215 explicit
216 multimap(const allocator_type& __a)
217 : _M_t(_Compare(), _Pair_alloc_type(__a)) { }
218
219 /// Allocator-extended copy constructor.
220 multimap(const multimap& __m, const allocator_type& __a)
221 : _M_t(__m._M_t, _Pair_alloc_type(__a)) { }
222
223 /// Allocator-extended move constructor.
224 multimap(multimap&& __m, const allocator_type& __a)
225 noexcept(is_nothrow_copy_constructible<_Compare>::value
226 && _Alloc_traits::_S_always_equal())
227 : _M_t(std::move(__m._M_t), _Pair_alloc_type(__a)) { }
228
229 /// Allocator-extended initialier-list constructor.
230 multimap(initializer_list<value_type> __l, const allocator_type& __a)
231 : _M_t(_Compare(), _Pair_alloc_type(__a))
232 { _M_t._M_insert_equal(__l.begin(), __l.end()); }
233
234 /// Allocator-extended range constructor.
235 template<typename _InputIterator>
236 multimap(_InputIterator __first, _InputIterator __last,
237 const allocator_type& __a)
238 : _M_t(_Compare(), _Pair_alloc_type(__a))
239 { _M_t._M_insert_equal(__first, __last); }
707bff49 240#endif
241
b9156b5c 242 /**
243 * @brief Builds a %multimap from a range.
e12e4f3b 244 * @param __first An input iterator.
245 * @param __last An input iterator.
b9156b5c 246 *
247 * Create a %multimap consisting of copies of the elements from
e12e4f3b 248 * [__first,__last). This is linear in N if the range is already sorted,
249 * and NlogN otherwise (where N is distance(__first,__last)).
b9156b5c 250 */
707bff49 251 template<typename _InputIterator>
b9156b5c 252 multimap(_InputIterator __first, _InputIterator __last)
707bff49 253 : _M_t()
dabf1342 254 { _M_t._M_insert_equal(__first, __last); }
bae9b8af 255
b9156b5c 256 /**
257 * @brief Builds a %multimap from a range.
e12e4f3b 258 * @param __first An input iterator.
259 * @param __last An input iterator.
260 * @param __comp A comparison functor.
261 * @param __a An allocator object.
b9156b5c 262 *
263 * Create a %multimap consisting of copies of the elements from
e12e4f3b 264 * [__first,__last). This is linear in N if the range is already sorted,
265 * and NlogN otherwise (where N is distance(__first,__last)).
b9156b5c 266 */
707bff49 267 template<typename _InputIterator>
b9156b5c 268 multimap(_InputIterator __first, _InputIterator __last,
269 const _Compare& __comp,
270 const allocator_type& __a = allocator_type())
852b4cc2 271 : _M_t(__comp, _Pair_alloc_type(__a))
8474dcf5 272 { _M_t._M_insert_equal(__first, __last); }
bae9b8af 273
b9156b5c 274 // FIXME There is no dtor declared, but we should have something generated
275 // by Doxygen. I don't know what tags to add to this paragraph to make
276 // that happen:
277 /**
278 * The dtor only erases the elements, and note that if the elements
279 * themselves are pointers, the pointed-to memory is not touched in any
9fc1117c 280 * way. Managing the pointer is the user's responsibility.
b9156b5c 281 */
bae9b8af 282
b9156b5c 283 /**
284 * @brief %Multimap assignment operator.
e12e4f3b 285 * @param __x A %multimap of identical element and allocator types.
b9156b5c 286 *
e12e4f3b 287 * All the elements of @a __x are copied, but unlike the copy
288 * constructor, the allocator object is not copied.
b9156b5c 289 */
290 multimap&
291 operator=(const multimap& __x)
292 {
293 _M_t = __x._M_t;
294 return *this;
295 }
bae9b8af 296
0c8766b1 297#if __cplusplus >= 201103L
39e522ee 298 /// Move assignment operator.
707bff49 299 multimap&
39e522ee 300 operator=(multimap&&) = default;
b23fdac1 301
302 /**
303 * @brief %Multimap list assignment operator.
e12e4f3b 304 * @param __l An initializer_list.
b23fdac1 305 *
306 * This function fills a %multimap with copies of the elements
e12e4f3b 307 * in the initializer list @a __l.
b23fdac1 308 *
309 * Note that the assignment completely changes the %multimap and
310 * that the resulting %multimap's size is the same as the number
311 * of elements assigned. Old data may be lost.
312 */
313 multimap&
314 operator=(initializer_list<value_type> __l)
315 {
39e522ee 316 _M_t._M_assign_equal(__l.begin(), __l.end());
b23fdac1 317 return *this;
318 }
707bff49 319#endif
320
b9156b5c 321 /// Get a copy of the memory allocation object.
322 allocator_type
7cd718fd 323 get_allocator() const _GLIBCXX_NOEXCEPT
852b4cc2 324 { return allocator_type(_M_t.get_allocator()); }
bae9b8af 325
b9156b5c 326 // iterators
327 /**
328 * Returns a read/write iterator that points to the first pair in the
329 * %multimap. Iteration is done in ascending order according to the
330 * keys.
331 */
332 iterator
7cd718fd 333 begin() _GLIBCXX_NOEXCEPT
b9156b5c 334 { return _M_t.begin(); }
bae9b8af 335
b9156b5c 336 /**
337 * Returns a read-only (constant) iterator that points to the first pair
338 * in the %multimap. Iteration is done in ascending order according to
339 * the keys.
340 */
341 const_iterator
7cd718fd 342 begin() const _GLIBCXX_NOEXCEPT
b9156b5c 343 { return _M_t.begin(); }
bae9b8af 344
b9156b5c 345 /**
346 * Returns a read/write iterator that points one past the last pair in
347 * the %multimap. Iteration is done in ascending order according to the
348 * keys.
349 */
350 iterator
7cd718fd 351 end() _GLIBCXX_NOEXCEPT
b9156b5c 352 { return _M_t.end(); }
bae9b8af 353
b9156b5c 354 /**
355 * Returns a read-only (constant) iterator that points one past the last
356 * pair in the %multimap. Iteration is done in ascending order according
357 * to the keys.
358 */
359 const_iterator
7cd718fd 360 end() const _GLIBCXX_NOEXCEPT
b9156b5c 361 { return _M_t.end(); }
bae9b8af 362
b9156b5c 363 /**
364 * Returns a read/write reverse iterator that points to the last pair in
365 * the %multimap. Iteration is done in descending order according to the
366 * keys.
367 */
368 reverse_iterator
7cd718fd 369 rbegin() _GLIBCXX_NOEXCEPT
b9156b5c 370 { return _M_t.rbegin(); }
bae9b8af 371
b9156b5c 372 /**
373 * Returns a read-only (constant) reverse iterator that points to the
374 * last pair in the %multimap. Iteration is done in descending order
375 * according to the keys.
376 */
377 const_reverse_iterator
7cd718fd 378 rbegin() const _GLIBCXX_NOEXCEPT
b9156b5c 379 { return _M_t.rbegin(); }
bae9b8af 380
b9156b5c 381 /**
382 * Returns a read/write reverse iterator that points to one before the
383 * first pair in the %multimap. Iteration is done in descending order
384 * according to the keys.
385 */
386 reverse_iterator
7cd718fd 387 rend() _GLIBCXX_NOEXCEPT
b9156b5c 388 { return _M_t.rend(); }
bae9b8af 389
b9156b5c 390 /**
391 * Returns a read-only (constant) reverse iterator that points to one
392 * before the first pair in the %multimap. Iteration is done in
393 * descending order according to the keys.
394 */
395 const_reverse_iterator
7cd718fd 396 rend() const _GLIBCXX_NOEXCEPT
b9156b5c 397 { return _M_t.rend(); }
bae9b8af 398
0c8766b1 399#if __cplusplus >= 201103L
c40b2e37 400 /**
401 * Returns a read-only (constant) iterator that points to the first pair
402 * in the %multimap. Iteration is done in ascending order according to
403 * the keys.
404 */
405 const_iterator
7cd718fd 406 cbegin() const noexcept
c40b2e37 407 { return _M_t.begin(); }
408
409 /**
410 * Returns a read-only (constant) iterator that points one past the last
411 * pair in the %multimap. Iteration is done in ascending order according
412 * to the keys.
413 */
414 const_iterator
7cd718fd 415 cend() const noexcept
c40b2e37 416 { return _M_t.end(); }
417
418 /**
419 * Returns a read-only (constant) reverse iterator that points to the
420 * last pair in the %multimap. Iteration is done in descending order
421 * according to the keys.
422 */
423 const_reverse_iterator
7cd718fd 424 crbegin() const noexcept
c40b2e37 425 { return _M_t.rbegin(); }
426
427 /**
428 * Returns a read-only (constant) reverse iterator that points to one
429 * before the first pair in the %multimap. Iteration is done in
430 * descending order according to the keys.
431 */
432 const_reverse_iterator
7cd718fd 433 crend() const noexcept
c40b2e37 434 { return _M_t.rend(); }
435#endif
436
b9156b5c 437 // capacity
438 /** Returns true if the %multimap is empty. */
439 bool
7cd718fd 440 empty() const _GLIBCXX_NOEXCEPT
b9156b5c 441 { return _M_t.empty(); }
bae9b8af 442
b9156b5c 443 /** Returns the size of the %multimap. */
444 size_type
7cd718fd 445 size() const _GLIBCXX_NOEXCEPT
b9156b5c 446 { return _M_t.size(); }
bae9b8af 447
b9156b5c 448 /** Returns the maximum size of the %multimap. */
449 size_type
7cd718fd 450 max_size() const _GLIBCXX_NOEXCEPT
b9156b5c 451 { return _M_t.max_size(); }
bae9b8af 452
b9156b5c 453 // modifiers
0c8766b1 454#if __cplusplus >= 201103L
6b9314a8 455 /**
456 * @brief Build and insert a std::pair into the %multimap.
457 *
458 * @param __args Arguments used to generate a new pair instance (see
459 * std::piecewise_contruct for passing arguments to each
460 * part of the pair constructor).
461 *
462 * @return An iterator that points to the inserted (key,value) pair.
463 *
464 * This function builds and inserts a (key, value) %pair into the
465 * %multimap.
466 * Contrary to a std::map the %multimap does not rely on unique keys and
467 * thus multiple pairs with the same key can be inserted.
468 *
469 * Insertion requires logarithmic time.
470 */
471 template<typename... _Args>
472 iterator
473 emplace(_Args&&... __args)
474 { return _M_t._M_emplace_equal(std::forward<_Args>(__args)...); }
475
476 /**
477 * @brief Builds and inserts a std::pair into the %multimap.
478 *
479 * @param __pos An iterator that serves as a hint as to where the pair
480 * should be inserted.
481 * @param __args Arguments used to generate a new pair instance (see
482 * std::piecewise_contruct for passing arguments to each
483 * part of the pair constructor).
484 * @return An iterator that points to the inserted (key,value) pair.
485 *
486 * This function inserts a (key, value) pair into the %multimap.
487 * Contrary to a std::map the %multimap does not rely on unique keys and
488 * thus multiple pairs with the same key can be inserted.
489 * Note that the first parameter is only a hint and can potentially
490 * improve the performance of the insertion process. A bad hint would
491 * cause no gains in efficiency.
492 *
493 * For more on @a hinting, see:
0698cdf1 494 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/associative.html#containers.associative.insert_hints
6b9314a8 495 *
496 * Insertion requires logarithmic time (if the hint is not taken).
497 */
498 template<typename... _Args>
499 iterator
500 emplace_hint(const_iterator __pos, _Args&&... __args)
501 {
502 return _M_t._M_emplace_hint_equal(__pos,
503 std::forward<_Args>(__args)...);
504 }
505#endif
506
b9156b5c 507 /**
508 * @brief Inserts a std::pair into the %multimap.
e12e4f3b 509 * @param __x Pair to be inserted (see std::make_pair for easy creation
b9156b5c 510 * of pairs).
511 * @return An iterator that points to the inserted (key,value) pair.
512 *
bae9b8af 513 * This function inserts a (key, value) pair into the %multimap.
b9156b5c 514 * Contrary to a std::map the %multimap does not rely on unique keys and
515 * thus multiple pairs with the same key can be inserted.
516 *
517 * Insertion requires logarithmic time.
518 */
519 iterator
520 insert(const value_type& __x)
8474dcf5 521 { return _M_t._M_insert_equal(__x); }
bae9b8af 522
0c8766b1 523#if __cplusplus >= 201103L
3e469200 524 template<typename _Pair, typename = typename
4f2884de 525 std::enable_if<std::is_constructible<value_type,
526 _Pair&&>::value>::type>
3e469200 527 iterator
528 insert(_Pair&& __x)
529 { return _M_t._M_insert_equal(std::forward<_Pair>(__x)); }
530#endif
531
b9156b5c 532 /**
533 * @brief Inserts a std::pair into the %multimap.
e12e4f3b 534 * @param __position An iterator that serves as a hint as to where the
535 * pair should be inserted.
536 * @param __x Pair to be inserted (see std::make_pair for easy creation
537 * of pairs).
b9156b5c 538 * @return An iterator that points to the inserted (key,value) pair.
539 *
bae9b8af 540 * This function inserts a (key, value) pair into the %multimap.
b9156b5c 541 * Contrary to a std::map the %multimap does not rely on unique keys and
542 * thus multiple pairs with the same key can be inserted.
543 * Note that the first parameter is only a hint and can potentially
544 * improve the performance of the insertion process. A bad hint would
545 * cause no gains in efficiency.
546 *
72117d76 547 * For more on @a hinting, see:
0698cdf1 548 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/associative.html#containers.associative.insert_hints
b9156b5c 549 *
550 * Insertion requires logarithmic time (if the hint is not taken).
551 */
552 iterator
0c8766b1 553#if __cplusplus >= 201103L
3b607c40 554 insert(const_iterator __position, const value_type& __x)
555#else
b9156b5c 556 insert(iterator __position, const value_type& __x)
3b607c40 557#endif
0447af6c 558 { return _M_t._M_insert_equal_(__position, __x); }
bae9b8af 559
0c8766b1 560#if __cplusplus >= 201103L
3e469200 561 template<typename _Pair, typename = typename
4f2884de 562 std::enable_if<std::is_constructible<value_type,
563 _Pair&&>::value>::type>
3e469200 564 iterator
565 insert(const_iterator __position, _Pair&& __x)
566 { return _M_t._M_insert_equal_(__position,
567 std::forward<_Pair>(__x)); }
568#endif
569
b9156b5c 570 /**
c53be2be 571 * @brief A template function that attempts to insert a range
572 * of elements.
e12e4f3b 573 * @param __first Iterator pointing to the start of the range to be
574 * inserted.
575 * @param __last Iterator pointing to the end of the range.
b9156b5c 576 *
577 * Complexity similar to that of the range constructor.
578 */
707bff49 579 template<typename _InputIterator>
b9156b5c 580 void
581 insert(_InputIterator __first, _InputIterator __last)
8474dcf5 582 { _M_t._M_insert_equal(__first, __last); }
bae9b8af 583
0c8766b1 584#if __cplusplus >= 201103L
b23fdac1 585 /**
586 * @brief Attempts to insert a list of std::pairs into the %multimap.
e12e4f3b 587 * @param __l A std::initializer_list<value_type> of pairs to be
588 * inserted.
b23fdac1 589 *
590 * Complexity similar to that of the range constructor.
591 */
592 void
593 insert(initializer_list<value_type> __l)
594 { this->insert(__l.begin(), __l.end()); }
595#endif
596
0c8766b1 597#if __cplusplus >= 201103L
200f291d 598 // _GLIBCXX_RESOLVE_LIB_DEFECTS
599 // DR 130. Associative erase should return an iterator.
600 /**
601 * @brief Erases an element from a %multimap.
e12e4f3b 602 * @param __position An iterator pointing to the element to be erased.
200f291d 603 * @return An iterator pointing to the element immediately following
604 * @a position prior to the element being erased. If no such
605 * element exists, end() is returned.
606 *
607 * This function erases an element, pointed to by the given iterator,
608 * from a %multimap. Note that this function only erases the element,
609 * and that if the element is itself a pointer, the pointed-to memory is
610 * not touched in any way. Managing the pointer is the user's
611 * responsibility.
612 */
613 iterator
3b607c40 614 erase(const_iterator __position)
200f291d 615 { return _M_t.erase(__position); }
8683d45d 616
617 // LWG 2059.
8544d95d 618 _GLIBCXX_ABI_TAG_CXX11
8683d45d 619 iterator
620 erase(iterator __position)
621 { return _M_t.erase(__position); }
200f291d 622#else
b9156b5c 623 /**
624 * @brief Erases an element from a %multimap.
e12e4f3b 625 * @param __position An iterator pointing to the element to be erased.
b9156b5c 626 *
627 * This function erases an element, pointed to by the given iterator,
628 * from a %multimap. Note that this function only erases the element,
629 * and that if the element is itself a pointer, the pointed-to memory is
630 * not touched in any way. Managing the pointer is the user's
9fc1117c 631 * responsibility.
b9156b5c 632 */
32bb2cd7 633 void
b9156b5c 634 erase(iterator __position)
635 { _M_t.erase(__position); }
200f291d 636#endif
bae9b8af 637
b9156b5c 638 /**
639 * @brief Erases elements according to the provided key.
e12e4f3b 640 * @param __x Key of element to be erased.
b9156b5c 641 * @return The number of elements erased.
642 *
643 * This function erases all elements located by the given key from a
644 * %multimap.
645 * Note that this function only erases the element, and that if
646 * the element is itself a pointer, the pointed-to memory is not touched
9fc1117c 647 * in any way. Managing the pointer is the user's responsibility.
b9156b5c 648 */
649 size_type
650 erase(const key_type& __x)
651 { return _M_t.erase(__x); }
bae9b8af 652
0c8766b1 653#if __cplusplus >= 201103L
200f291d 654 // _GLIBCXX_RESOLVE_LIB_DEFECTS
655 // DR 130. Associative erase should return an iterator.
656 /**
657 * @brief Erases a [first,last) range of elements from a %multimap.
e12e4f3b 658 * @param __first Iterator pointing to the start of the range to be
659 * erased.
660 * @param __last Iterator pointing to the end of the range to be
661 * erased .
662 * @return The iterator @a __last.
200f291d 663 *
664 * This function erases a sequence of elements from a %multimap.
665 * Note that this function only erases the elements, and that if
666 * the elements themselves are pointers, the pointed-to memory is not
3b607c40 667 * touched in any way. Managing the pointer is the user's
668 * responsibility.
200f291d 669 */
670 iterator
3b607c40 671 erase(const_iterator __first, const_iterator __last)
200f291d 672 { return _M_t.erase(__first, __last); }
673#else
674 // _GLIBCXX_RESOLVE_LIB_DEFECTS
675 // DR 130. Associative erase should return an iterator.
b9156b5c 676 /**
677 * @brief Erases a [first,last) range of elements from a %multimap.
e12e4f3b 678 * @param __first Iterator pointing to the start of the range to be
b9156b5c 679 * erased.
e12e4f3b 680 * @param __last Iterator pointing to the end of the range to
681 * be erased.
b9156b5c 682 *
683 * This function erases a sequence of elements from a %multimap.
684 * Note that this function only erases the elements, and that if
685 * the elements themselves are pointers, the pointed-to memory is not
3b607c40 686 * touched in any way. Managing the pointer is the user's
687 * responsibility.
b9156b5c 688 */
689 void
690 erase(iterator __first, iterator __last)
691 { _M_t.erase(__first, __last); }
200f291d 692#endif
bae9b8af 693
b9156b5c 694 /**
695 * @brief Swaps data with another %multimap.
e12e4f3b 696 * @param __x A %multimap of the same element and allocator types.
b9156b5c 697 *
698 * This exchanges the elements between two multimaps in constant time.
699 * (It is only swapping a pointer, an integer, and an instance of
700 * the @c Compare type (which itself is often stateless and empty), so it
701 * should be quite fast.)
702 * Note that the global std::swap() function is specialized such that
703 * std::swap(m1,m2) will feed to this function.
704 */
705 void
706 swap(multimap& __x)
02769f1f 707 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Compare>::value)
b9156b5c 708 { _M_t.swap(__x._M_t); }
bae9b8af 709
b9156b5c 710 /**
711 * Erases all elements in a %multimap. Note that this function only
712 * erases the elements, and that if the elements themselves are pointers,
713 * the pointed-to memory is not touched in any way. Managing the pointer
9fc1117c 714 * is the user's responsibility.
b9156b5c 715 */
716 void
7cd718fd 717 clear() _GLIBCXX_NOEXCEPT
b9156b5c 718 { _M_t.clear(); }
bae9b8af 719
b9156b5c 720 // observers
721 /**
722 * Returns the key comparison object out of which the %multimap
723 * was constructed.
724 */
725 key_compare
726 key_comp() const
727 { return _M_t.key_comp(); }
bae9b8af 728
b9156b5c 729 /**
730 * Returns a value comparison object, built from the key comparison
731 * object out of which the %multimap was constructed.
732 */
733 value_compare
734 value_comp() const
735 { return value_compare(_M_t.key_comp()); }
bae9b8af 736
b9156b5c 737 // multimap operations
fcb2e07a 738
739 //@{
b9156b5c 740 /**
741 * @brief Tries to locate an element in a %multimap.
e12e4f3b 742 * @param __x Key of (key, value) pair to be located.
b9156b5c 743 * @return Iterator pointing to sought-after element,
744 * or end() if not found.
745 *
746 * This function takes a key and tries to locate the element with which
747 * the key matches. If successful the function returns an iterator
748 * pointing to the sought after %pair. If unsuccessful it returns the
749 * past-the-end ( @c end() ) iterator.
750 */
751 iterator
752 find(const key_type& __x)
753 { return _M_t.find(__x); }
bae9b8af 754
fcb2e07a 755#if __cplusplus > 201103L
756 template<typename _Kt>
757 auto
758 find(const _Kt& __x) -> decltype(_M_t._M_find_tr(__x))
759 { return _M_t._M_find_tr(__x); }
760#endif
761 //@}
762
763 //@{
b9156b5c 764 /**
765 * @brief Tries to locate an element in a %multimap.
e12e4f3b 766 * @param __x Key of (key, value) pair to be located.
b9156b5c 767 * @return Read-only (constant) iterator pointing to sought-after
768 * element, or end() if not found.
769 *
770 * This function takes a key and tries to locate the element with which
771 * the key matches. If successful the function returns a constant
772 * iterator pointing to the sought after %pair. If unsuccessful it
773 * returns the past-the-end ( @c end() ) iterator.
774 */
775 const_iterator
776 find(const key_type& __x) const
777 { return _M_t.find(__x); }
bae9b8af 778
fcb2e07a 779#if __cplusplus > 201103L
780 template<typename _Kt>
781 auto
782 find(const _Kt& __x) const -> decltype(_M_t._M_find_tr(__x))
783 { return _M_t._M_find_tr(__x); }
784#endif
785 //@}
786
787 //@{
b9156b5c 788 /**
789 * @brief Finds the number of elements with given key.
e12e4f3b 790 * @param __x Key of (key, value) pairs to be located.
b9156b5c 791 * @return Number of elements with specified key.
792 */
793 size_type
794 count(const key_type& __x) const
795 { return _M_t.count(__x); }
bae9b8af 796
fcb2e07a 797#if __cplusplus > 201103L
798 template<typename _Kt>
799 auto
800 count(const _Kt& __x) const -> decltype(_M_t._M_count_tr(__x))
801 { return _M_t._M_count_tr(__x); }
802#endif
803 //@}
804
805 //@{
b9156b5c 806 /**
807 * @brief Finds the beginning of a subsequence matching given key.
e12e4f3b 808 * @param __x Key of (key, value) pair to be located.
b9156b5c 809 * @return Iterator pointing to first element equal to or greater
810 * than key, or end().
811 *
812 * This function returns the first element of a subsequence of elements
813 * that matches the given key. If unsuccessful it returns an iterator
814 * pointing to the first element that has a greater value than given key
815 * or end() if no such element exists.
816 */
817 iterator
818 lower_bound(const key_type& __x)
819 { return _M_t.lower_bound(__x); }
bae9b8af 820
fcb2e07a 821#if __cplusplus > 201103L
822 template<typename _Kt>
823 auto
824 lower_bound(const _Kt& __x)
825 -> decltype(_M_t._M_lower_bound_tr(__x))
826 { return _M_t._M_lower_bound_tr(__x); }
827#endif
828 //@}
829
830 //@{
b9156b5c 831 /**
832 * @brief Finds the beginning of a subsequence matching given key.
e12e4f3b 833 * @param __x Key of (key, value) pair to be located.
b9156b5c 834 * @return Read-only (constant) iterator pointing to first element
835 * equal to or greater than key, or end().
836 *
e12e4f3b 837 * This function returns the first element of a subsequence of
838 * elements that matches the given key. If unsuccessful the
839 * iterator will point to the next greatest element or, if no
840 * such greater element exists, to end().
b9156b5c 841 */
842 const_iterator
843 lower_bound(const key_type& __x) const
844 { return _M_t.lower_bound(__x); }
bae9b8af 845
fcb2e07a 846#if __cplusplus > 201103L
847 template<typename _Kt>
848 auto
849 lower_bound(const _Kt& __x) const
850 -> decltype(_M_t._M_lower_bound_tr(__x))
851 { return _M_t._M_lower_bound_tr(__x); }
852#endif
853 //@}
854
855 //@{
b9156b5c 856 /**
857 * @brief Finds the end of a subsequence matching given key.
e12e4f3b 858 * @param __x Key of (key, value) pair to be located.
b9156b5c 859 * @return Iterator pointing to the first element
860 * greater than key, or end().
861 */
862 iterator
863 upper_bound(const key_type& __x)
864 { return _M_t.upper_bound(__x); }
bae9b8af 865
fcb2e07a 866#if __cplusplus > 201103L
867 template<typename _Kt>
868 auto
869 upper_bound(const _Kt& __x)
870 -> decltype(_M_t._M_upper_bound_tr(__x))
871 { return _M_t._M_upper_bound_tr(__x); }
872#endif
873 //@}
874
875 //@{
b9156b5c 876 /**
877 * @brief Finds the end of a subsequence matching given key.
e12e4f3b 878 * @param __x Key of (key, value) pair to be located.
b9156b5c 879 * @return Read-only (constant) iterator pointing to first iterator
880 * greater than key, or end().
881 */
882 const_iterator
883 upper_bound(const key_type& __x) const
884 { return _M_t.upper_bound(__x); }
bae9b8af 885
fcb2e07a 886#if __cplusplus > 201103L
887 template<typename _Kt>
888 auto
889 upper_bound(const _Kt& __x) const
890 -> decltype(_M_t._M_upper_bound_tr(__x))
891 { return _M_t._M_upper_bound_tr(__x); }
892#endif
893 //@}
894
895 //@{
b9156b5c 896 /**
897 * @brief Finds a subsequence matching given key.
e12e4f3b 898 * @param __x Key of (key, value) pairs to be located.
b9156b5c 899 * @return Pair of iterators that possibly points to the subsequence
900 * matching given key.
901 *
902 * This function is equivalent to
903 * @code
904 * std::make_pair(c.lower_bound(val),
905 * c.upper_bound(val))
906 * @endcode
907 * (but is faster than making the calls separately).
908 */
171a395a 909 std::pair<iterator, iterator>
b9156b5c 910 equal_range(const key_type& __x)
911 { return _M_t.equal_range(__x); }
bae9b8af 912
fcb2e07a 913#if __cplusplus > 201103L
914 template<typename _Kt>
915 auto
916 equal_range(const _Kt& __x)
917 -> decltype(_M_t._M_equal_range_tr(__x))
918 { return _M_t._M_equal_range_tr(__x); }
919#endif
920 //@}
921
922 //@{
b9156b5c 923 /**
924 * @brief Finds a subsequence matching given key.
e12e4f3b 925 * @param __x Key of (key, value) pairs to be located.
b9156b5c 926 * @return Pair of read-only (constant) iterators that possibly points
927 * to the subsequence matching given key.
928 *
929 * This function is equivalent to
930 * @code
931 * std::make_pair(c.lower_bound(val),
932 * c.upper_bound(val))
933 * @endcode
934 * (but is faster than making the calls separately).
935 */
171a395a 936 std::pair<const_iterator, const_iterator>
b9156b5c 937 equal_range(const key_type& __x) const
938 { return _M_t.equal_range(__x); }
bae9b8af 939
fcb2e07a 940#if __cplusplus > 201103L
941 template<typename _Kt>
942 auto
943 equal_range(const _Kt& __x) const
944 -> decltype(_M_t._M_equal_range_tr(__x))
945 { return _M_t._M_equal_range_tr(__x); }
946#endif
947 //@}
948
707bff49 949 template<typename _K1, typename _T1, typename _C1, typename _A1>
b9156b5c 950 friend bool
707bff49 951 operator==(const multimap<_K1, _T1, _C1, _A1>&,
952 const multimap<_K1, _T1, _C1, _A1>&);
bae9b8af 953
707bff49 954 template<typename _K1, typename _T1, typename _C1, typename _A1>
b9156b5c 955 friend bool
707bff49 956 operator<(const multimap<_K1, _T1, _C1, _A1>&,
957 const multimap<_K1, _T1, _C1, _A1>&);
32bb2cd7 958 };
bae9b8af 959
6f879981 960 /**
32bb2cd7 961 * @brief Multimap equality comparison.
e12e4f3b 962 * @param __x A %multimap.
963 * @param __y A %multimap of the same type as @a __x.
32bb2cd7 964 * @return True iff the size and elements of the maps are equal.
6f879981 965 *
32bb2cd7 966 * This is an equivalence relation. It is linear in the size of the
967 * multimaps. Multimaps are considered equivalent if their sizes are equal,
968 * and if corresponding elements compare equal.
969 */
707bff49 970 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 971 inline bool
171a395a 972 operator==(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
973 const multimap<_Key, _Tp, _Compare, _Alloc>& __y)
b9156b5c 974 { return __x._M_t == __y._M_t; }
bae9b8af 975
32bb2cd7 976 /**
977 * @brief Multimap ordering relation.
e12e4f3b 978 * @param __x A %multimap.
979 * @param __y A %multimap of the same type as @a __x.
78314996 980 * @return True iff @a x is lexicographically less than @a y.
6f879981 981 *
32bb2cd7 982 * This is a total ordering relation. It is linear in the size of the
983 * multimaps. The elements must be comparable with @c <.
6f879981 984 *
78314996 985 * See std::lexicographical_compare() for how the determination is made.
32bb2cd7 986 */
707bff49 987 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 988 inline bool
171a395a 989 operator<(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
990 const multimap<_Key, _Tp, _Compare, _Alloc>& __y)
32bb2cd7 991 { return __x._M_t < __y._M_t; }
bae9b8af 992
32bb2cd7 993 /// Based on operator==
707bff49 994 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 995 inline bool
171a395a 996 operator!=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
997 const multimap<_Key, _Tp, _Compare, _Alloc>& __y)
32bb2cd7 998 { return !(__x == __y); }
bae9b8af 999
32bb2cd7 1000 /// Based on operator<
707bff49 1001 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 1002 inline bool
171a395a 1003 operator>(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
1004 const multimap<_Key, _Tp, _Compare, _Alloc>& __y)
32bb2cd7 1005 { return __y < __x; }
bae9b8af 1006
32bb2cd7 1007 /// Based on operator<
707bff49 1008 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 1009 inline bool
171a395a 1010 operator<=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
1011 const multimap<_Key, _Tp, _Compare, _Alloc>& __y)
32bb2cd7 1012 { return !(__y < __x); }
bae9b8af 1013
32bb2cd7 1014 /// Based on operator<
707bff49 1015 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 1016 inline bool
171a395a 1017 operator>=(const multimap<_Key, _Tp, _Compare, _Alloc>& __x,
1018 const multimap<_Key, _Tp, _Compare, _Alloc>& __y)
32bb2cd7 1019 { return !(__x < __y); }
bae9b8af 1020
32bb2cd7 1021 /// See std::multimap::swap().
707bff49 1022 template<typename _Key, typename _Tp, typename _Compare, typename _Alloc>
32bb2cd7 1023 inline void
171a395a 1024 swap(multimap<_Key, _Tp, _Compare, _Alloc>& __x,
1025 multimap<_Key, _Tp, _Compare, _Alloc>& __y)
02769f1f 1026 _GLIBCXX_NOEXCEPT_IF(noexcept(__x.swap(__y)))
32bb2cd7 1027 { __x.swap(__y); }
1069247d 1028
2948dd21 1029_GLIBCXX_END_NAMESPACE_CONTAINER
1030} // namespace std
1d487aca 1031
f142a34a 1032#endif /* _STL_MULTIMAP_H */