1 // Multiset implementation -*- C++ -*-
3 // Copyright (C) 2001-2018 Free Software Foundation, Inc.
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
8 // Free Software Foundation; either version 3, or (at your option)
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.
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.
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/>.
28 * Hewlett-Packard Company
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.
40 * Silicon Graphics Computer Systems, Inc.
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.
51 /** @file bits/stl_multiset.h
52 * This is an internal header file, included by other library headers.
53 * Do not attempt to use it directly. @headername{set}
56 #ifndef _STL_MULTISET_H
57 #define _STL_MULTISET_H 1
59 #include <bits/concept_check.h>
60 #if __cplusplus >= 201103L
61 #include <initializer_list>
64 namespace std
_GLIBCXX_VISIBILITY(default)
66 _GLIBCXX_BEGIN_NAMESPACE_VERSION
67 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
69 template<typename _Key
, typename _Compare
, typename _Alloc
>
73 * @brief A standard container made up of elements, which can be retrieved
74 * in logarithmic time.
76 * @ingroup associative_containers
79 * @tparam _Key Type of key objects.
80 * @tparam _Compare Comparison function object type, defaults to less<_Key>.
81 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
83 * Meets the requirements of a <a href="tables.html#65">container</a>, a
84 * <a href="tables.html#66">reversible container</a>, and an
85 * <a href="tables.html#69">associative container</a> (using equivalent
86 * keys). For a @c multiset<Key> the key_type and value_type are Key.
88 * Multisets support bidirectional iterators.
90 * The private tree data is declared exactly the same way for set and
91 * multiset; the distinction is made entirely in how the tree functions are
92 * called (*_unique versus *_equal, same as the standard).
94 template <typename _Key
, typename _Compare
= std::less
<_Key
>,
95 typename _Alloc
= std::allocator
<_Key
> >
98 #ifdef _GLIBCXX_CONCEPT_CHECKS
99 // concept requirements
100 typedef typename
_Alloc::value_type _Alloc_value_type
;
101 # if __cplusplus < 201103L
102 __glibcxx_class_requires(_Key
, _SGIAssignableConcept
)
104 __glibcxx_class_requires4(_Compare
, bool, _Key
, _Key
,
105 _BinaryFunctionConcept
)
106 __glibcxx_class_requires2(_Key
, _Alloc_value_type
, _SameTypeConcept
)
109 #if __cplusplus >= 201103L
110 static_assert(is_same
<typename remove_cv
<_Key
>::type
, _Key
>::value
,
111 "std::multiset must have a non-const, non-volatile value_type");
112 # ifdef __STRICT_ANSI__
113 static_assert(is_same
<typename
_Alloc::value_type
, _Key
>::value
,
114 "std::multiset must have the same value_type as its allocator");
120 typedef _Key key_type
;
121 typedef _Key value_type
;
122 typedef _Compare key_compare
;
123 typedef _Compare value_compare
;
124 typedef _Alloc allocator_type
;
127 /// This turns a red-black tree into a [multi]set.
128 typedef typename
__gnu_cxx::__alloc_traits
<_Alloc
>::template
129 rebind
<_Key
>::other _Key_alloc_type
;
131 typedef _Rb_tree
<key_type
, value_type
, _Identity
<value_type
>,
132 key_compare
, _Key_alloc_type
> _Rep_type
;
133 /// The actual tree structure.
136 typedef __gnu_cxx::__alloc_traits
<_Key_alloc_type
> _Alloc_traits
;
139 typedef typename
_Alloc_traits::pointer pointer
;
140 typedef typename
_Alloc_traits::const_pointer const_pointer
;
141 typedef typename
_Alloc_traits::reference reference
;
142 typedef typename
_Alloc_traits::const_reference const_reference
;
143 // _GLIBCXX_RESOLVE_LIB_DEFECTS
144 // DR 103. set::iterator is required to be modifiable,
145 // but this allows modification of keys.
146 typedef typename
_Rep_type::const_iterator iterator
;
147 typedef typename
_Rep_type::const_iterator const_iterator
;
148 typedef typename
_Rep_type::const_reverse_iterator reverse_iterator
;
149 typedef typename
_Rep_type::const_reverse_iterator const_reverse_iterator
;
150 typedef typename
_Rep_type::size_type size_type
;
151 typedef typename
_Rep_type::difference_type difference_type
;
153 #if __cplusplus > 201402L
154 using node_type
= typename
_Rep_type::node_type
;
157 // allocation/deallocation
159 * @brief Default constructor creates no elements.
161 #if __cplusplus < 201103L
162 multiset() : _M_t() { }
164 multiset() = default;
168 * @brief Creates a %multiset with no elements.
169 * @param __comp Comparator to use.
170 * @param __a An allocator object.
173 multiset(const _Compare
& __comp
,
174 const allocator_type
& __a
= allocator_type())
175 : _M_t(__comp
, _Key_alloc_type(__a
)) { }
178 * @brief Builds a %multiset from a range.
179 * @param __first An input iterator.
180 * @param __last An input iterator.
182 * Create a %multiset consisting of copies of the elements from
183 * [first,last). This is linear in N if the range is already sorted,
184 * and NlogN otherwise (where N is distance(__first,__last)).
186 template<typename _InputIterator
>
187 multiset(_InputIterator __first
, _InputIterator __last
)
189 { _M_t
._M_insert_equal(__first
, __last
); }
192 * @brief Builds a %multiset from a range.
193 * @param __first An input iterator.
194 * @param __last An input iterator.
195 * @param __comp A comparison functor.
196 * @param __a An allocator object.
198 * Create a %multiset consisting of copies of the elements from
199 * [__first,__last). This is linear in N if the range is already sorted,
200 * and NlogN otherwise (where N is distance(__first,__last)).
202 template<typename _InputIterator
>
203 multiset(_InputIterator __first
, _InputIterator __last
,
204 const _Compare
& __comp
,
205 const allocator_type
& __a
= allocator_type())
206 : _M_t(__comp
, _Key_alloc_type(__a
))
207 { _M_t
._M_insert_equal(__first
, __last
); }
210 * @brief %Multiset copy constructor.
212 * Whether the allocator is copied depends on the allocator traits.
214 #if __cplusplus < 201103L
215 multiset(const multiset
& __x
)
218 multiset(const multiset
&) = default;
221 * @brief %Multiset move constructor.
223 * The newly-created %multiset contains the exact contents of the
224 * moved instance. The moved instance is a valid, but unspecified
227 multiset(multiset
&&) = default;
230 * @brief Builds a %multiset from an initializer_list.
231 * @param __l An initializer_list.
232 * @param __comp A comparison functor.
233 * @param __a An allocator object.
235 * Create a %multiset consisting of copies of the elements from
236 * the list. This is linear in N if the list is already sorted,
237 * and NlogN otherwise (where N is @a __l.size()).
239 multiset(initializer_list
<value_type
> __l
,
240 const _Compare
& __comp
= _Compare(),
241 const allocator_type
& __a
= allocator_type())
242 : _M_t(__comp
, _Key_alloc_type(__a
))
243 { _M_t
._M_insert_equal(__l
.begin(), __l
.end()); }
245 /// Allocator-extended default constructor.
247 multiset(const allocator_type
& __a
)
248 : _M_t(_Compare(), _Key_alloc_type(__a
)) { }
250 /// Allocator-extended copy constructor.
251 multiset(const multiset
& __m
, const allocator_type
& __a
)
252 : _M_t(__m
._M_t
, _Key_alloc_type(__a
)) { }
254 /// Allocator-extended move constructor.
255 multiset(multiset
&& __m
, const allocator_type
& __a
)
256 noexcept(is_nothrow_copy_constructible
<_Compare
>::value
257 && _Alloc_traits::_S_always_equal())
258 : _M_t(std::move(__m
._M_t
), _Key_alloc_type(__a
)) { }
260 /// Allocator-extended initialier-list constructor.
261 multiset(initializer_list
<value_type
> __l
, const allocator_type
& __a
)
262 : _M_t(_Compare(), _Key_alloc_type(__a
))
263 { _M_t
._M_insert_equal(__l
.begin(), __l
.end()); }
265 /// Allocator-extended range constructor.
266 template<typename _InputIterator
>
267 multiset(_InputIterator __first
, _InputIterator __last
,
268 const allocator_type
& __a
)
269 : _M_t(_Compare(), _Key_alloc_type(__a
))
270 { _M_t
._M_insert_equal(__first
, __last
); }
273 * The dtor only erases the elements, and note that if the elements
274 * themselves are pointers, the pointed-to memory is not touched in any
275 * way. Managing the pointer is the user's responsibility.
277 ~multiset() = default;
281 * @brief %Multiset assignment operator.
283 * Whether the allocator is copied depends on the allocator traits.
285 #if __cplusplus < 201103L
287 operator=(const multiset
& __x
)
294 operator=(const multiset
&) = default;
296 /// Move assignment operator.
298 operator=(multiset
&&) = default;
301 * @brief %Multiset list assignment operator.
302 * @param __l An initializer_list.
304 * This function fills a %multiset with copies of the elements in the
305 * initializer list @a __l.
307 * Note that the assignment completely changes the %multiset and
308 * that the resulting %multiset's size is the same as the number
309 * of elements assigned.
312 operator=(initializer_list
<value_type
> __l
)
314 _M_t
._M_assign_equal(__l
.begin(), __l
.end());
321 /// Returns the comparison object.
324 { return _M_t
.key_comp(); }
325 /// Returns the comparison object.
328 { return _M_t
.key_comp(); }
329 /// Returns the memory allocation object.
331 get_allocator() const _GLIBCXX_NOEXCEPT
332 { return allocator_type(_M_t
.get_allocator()); }
335 * Returns a read-only (constant) iterator that points to the first
336 * element in the %multiset. Iteration is done in ascending order
337 * according to the keys.
340 begin() const _GLIBCXX_NOEXCEPT
341 { return _M_t
.begin(); }
344 * Returns a read-only (constant) iterator that points one past the last
345 * element in the %multiset. Iteration is done in ascending order
346 * according to the keys.
349 end() const _GLIBCXX_NOEXCEPT
350 { return _M_t
.end(); }
353 * Returns a read-only (constant) reverse iterator that points to the
354 * last element in the %multiset. Iteration is done in descending order
355 * according to the keys.
358 rbegin() const _GLIBCXX_NOEXCEPT
359 { return _M_t
.rbegin(); }
362 * Returns a read-only (constant) reverse iterator that points to the
363 * last element in the %multiset. Iteration is done in descending order
364 * according to the keys.
367 rend() const _GLIBCXX_NOEXCEPT
368 { return _M_t
.rend(); }
370 #if __cplusplus >= 201103L
372 * Returns a read-only (constant) iterator that points to the first
373 * element in the %multiset. Iteration is done in ascending order
374 * according to the keys.
377 cbegin() const noexcept
378 { return _M_t
.begin(); }
381 * Returns a read-only (constant) iterator that points one past the last
382 * element in the %multiset. Iteration is done in ascending order
383 * according to the keys.
386 cend() const noexcept
387 { return _M_t
.end(); }
390 * Returns a read-only (constant) reverse iterator that points to the
391 * last element in the %multiset. Iteration is done in descending order
392 * according to the keys.
395 crbegin() const noexcept
396 { return _M_t
.rbegin(); }
399 * Returns a read-only (constant) reverse iterator that points to the
400 * last element in the %multiset. Iteration is done in descending order
401 * according to the keys.
404 crend() const noexcept
405 { return _M_t
.rend(); }
408 /// Returns true if the %set is empty.
410 empty() const _GLIBCXX_NOEXCEPT
411 { return _M_t
.empty(); }
413 /// Returns the size of the %set.
415 size() const _GLIBCXX_NOEXCEPT
416 { return _M_t
.size(); }
418 /// Returns the maximum size of the %set.
420 max_size() const _GLIBCXX_NOEXCEPT
421 { return _M_t
.max_size(); }
424 * @brief Swaps data with another %multiset.
425 * @param __x A %multiset of the same element and allocator types.
427 * This exchanges the elements between two multisets in constant time.
428 * (It is only swapping a pointer, an integer, and an instance of the @c
429 * Compare type (which itself is often stateless and empty), so it should
431 * Note that the global std::swap() function is specialized such that
432 * std::swap(s1,s2) will feed to this function.
434 * Whether the allocators are swapped depends on the allocator traits.
438 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable
<_Compare
>::value
)
439 { _M_t
.swap(__x
._M_t
); }
442 #if __cplusplus >= 201103L
444 * @brief Builds and inserts an element into the %multiset.
445 * @param __args Arguments used to generate the element instance to be
447 * @return An iterator that points to the inserted element.
449 * This function inserts an element into the %multiset. Contrary
450 * to a std::set the %multiset does not rely on unique keys and thus
451 * multiple copies of the same element can be inserted.
453 * Insertion requires logarithmic time.
455 template<typename
... _Args
>
457 emplace(_Args
&&... __args
)
458 { return _M_t
._M_emplace_equal(std::forward
<_Args
>(__args
)...); }
461 * @brief Builds and inserts an element into the %multiset.
462 * @param __pos An iterator that serves as a hint as to where the
463 * element should be inserted.
464 * @param __args Arguments used to generate the element instance to be
466 * @return An iterator that points to the inserted element.
468 * This function inserts an element into the %multiset. Contrary
469 * to a std::set the %multiset does not rely on unique keys and thus
470 * multiple copies of the same element can be inserted.
472 * Note that the first parameter is only a hint and can potentially
473 * improve the performance of the insertion process. A bad hint would
474 * cause no gains in efficiency.
476 * See https://gcc.gnu.org/onlinedocs/libstdc++/manual/associative.html#containers.associative.insert_hints
477 * for more on @a hinting.
479 * Insertion requires logarithmic time (if the hint is not taken).
481 template<typename
... _Args
>
483 emplace_hint(const_iterator __pos
, _Args
&&... __args
)
485 return _M_t
._M_emplace_hint_equal(__pos
,
486 std::forward
<_Args
>(__args
)...);
491 * @brief Inserts an element into the %multiset.
492 * @param __x Element to be inserted.
493 * @return An iterator that points to the inserted element.
495 * This function inserts an element into the %multiset. Contrary
496 * to a std::set the %multiset does not rely on unique keys and thus
497 * multiple copies of the same element can be inserted.
499 * Insertion requires logarithmic time.
502 insert(const value_type
& __x
)
503 { return _M_t
._M_insert_equal(__x
); }
505 #if __cplusplus >= 201103L
507 insert(value_type
&& __x
)
508 { return _M_t
._M_insert_equal(std::move(__x
)); }
512 * @brief Inserts an element into the %multiset.
513 * @param __position An iterator that serves as a hint as to where the
514 * element should be inserted.
515 * @param __x Element to be inserted.
516 * @return An iterator that points to the inserted element.
518 * This function inserts an element into the %multiset. Contrary
519 * to a std::set the %multiset does not rely on unique keys and thus
520 * multiple copies of the same element can be inserted.
522 * Note that the first parameter is only a hint and can potentially
523 * improve the performance of the insertion process. A bad hint would
524 * cause no gains in efficiency.
526 * See https://gcc.gnu.org/onlinedocs/libstdc++/manual/associative.html#containers.associative.insert_hints
527 * for more on @a hinting.
529 * Insertion requires logarithmic time (if the hint is not taken).
532 insert(const_iterator __position
, const value_type
& __x
)
533 { return _M_t
._M_insert_equal_(__position
, __x
); }
535 #if __cplusplus >= 201103L
537 insert(const_iterator __position
, value_type
&& __x
)
538 { return _M_t
._M_insert_equal_(__position
, std::move(__x
)); }
542 * @brief A template function that tries to insert a range of elements.
543 * @param __first Iterator pointing to the start of the range to be
545 * @param __last Iterator pointing to the end of the range.
547 * Complexity similar to that of the range constructor.
549 template<typename _InputIterator
>
551 insert(_InputIterator __first
, _InputIterator __last
)
552 { _M_t
._M_insert_equal(__first
, __last
); }
554 #if __cplusplus >= 201103L
556 * @brief Attempts to insert a list of elements into the %multiset.
557 * @param __l A std::initializer_list<value_type> of elements
560 * Complexity similar to that of the range constructor.
563 insert(initializer_list
<value_type
> __l
)
564 { this->insert(__l
.begin(), __l
.end()); }
567 #if __cplusplus > 201402L
570 extract(const_iterator __pos
)
572 __glibcxx_assert(__pos
!= end());
573 return _M_t
.extract(__pos
);
578 extract(const key_type
& __x
)
579 { return _M_t
.extract(__x
); }
581 /// Re-insert an extracted node.
583 insert(node_type
&& __nh
)
584 { return _M_t
._M_reinsert_node_equal(std::move(__nh
)); }
586 /// Re-insert an extracted node.
588 insert(const_iterator __hint
, node_type
&& __nh
)
589 { return _M_t
._M_reinsert_node_hint_equal(__hint
, std::move(__nh
)); }
591 template<typename
, typename
>
592 friend class std::_Rb_tree_merge_helper
;
594 template<typename _Compare1
>
596 merge(multiset
<_Key
, _Compare1
, _Alloc
>& __source
)
598 using _Merge_helper
= _Rb_tree_merge_helper
<multiset
, _Compare1
>;
599 _M_t
._M_merge_equal(_Merge_helper::_S_get_tree(__source
));
602 template<typename _Compare1
>
604 merge(multiset
<_Key
, _Compare1
, _Alloc
>&& __source
)
607 template<typename _Compare1
>
609 merge(set
<_Key
, _Compare1
, _Alloc
>& __source
)
611 using _Merge_helper
= _Rb_tree_merge_helper
<multiset
, _Compare1
>;
612 _M_t
._M_merge_equal(_Merge_helper::_S_get_tree(__source
));
615 template<typename _Compare1
>
617 merge(set
<_Key
, _Compare1
, _Alloc
>&& __source
)
621 #if __cplusplus >= 201103L
622 // _GLIBCXX_RESOLVE_LIB_DEFECTS
623 // DR 130. Associative erase should return an iterator.
625 * @brief Erases an element from a %multiset.
626 * @param __position An iterator pointing to the element to be erased.
627 * @return An iterator pointing to the element immediately following
628 * @a position prior to the element being erased. If no such
629 * element exists, end() is returned.
631 * This function erases an element, pointed to by the given iterator,
632 * from a %multiset. Note that this function only erases the element,
633 * and that if the element is itself a pointer, the pointed-to memory is
634 * not touched in any way. Managing the pointer is the user's
637 _GLIBCXX_ABI_TAG_CXX11
639 erase(const_iterator __position
)
640 { return _M_t
.erase(__position
); }
643 * @brief Erases an element from a %multiset.
644 * @param __position An iterator pointing to the element to be erased.
646 * This function erases an element, pointed to by the given iterator,
647 * from a %multiset. Note that this function only erases the element,
648 * and that if the element is itself a pointer, the pointed-to memory is
649 * not touched in any way. Managing the pointer is the user's
653 erase(iterator __position
)
654 { _M_t
.erase(__position
); }
658 * @brief Erases elements according to the provided key.
659 * @param __x Key of element to be erased.
660 * @return The number of elements erased.
662 * This function erases all elements located by the given key from a
664 * Note that this function only erases the element, and that if
665 * the element is itself a pointer, the pointed-to memory is not touched
666 * in any way. Managing the pointer is the user's responsibility.
669 erase(const key_type
& __x
)
670 { return _M_t
.erase(__x
); }
672 #if __cplusplus >= 201103L
673 // _GLIBCXX_RESOLVE_LIB_DEFECTS
674 // DR 130. Associative erase should return an iterator.
676 * @brief Erases a [first,last) range of elements from a %multiset.
677 * @param __first Iterator pointing to the start of the range to be
679 * @param __last Iterator pointing to the end of the range to
681 * @return The iterator @a last.
683 * This function erases a sequence of elements from a %multiset.
684 * Note that this function only erases the elements, and that if
685 * the elements themselves are pointers, the pointed-to memory is not
686 * touched in any way. Managing the pointer is the user's
689 _GLIBCXX_ABI_TAG_CXX11
691 erase(const_iterator __first
, const_iterator __last
)
692 { return _M_t
.erase(__first
, __last
); }
695 * @brief Erases a [first,last) range of elements from a %multiset.
696 * @param first Iterator pointing to the start of the range to be
698 * @param last Iterator pointing to the end of the range to be erased.
700 * This function erases a sequence of elements from a %multiset.
701 * Note that this function only erases the elements, and that if
702 * the elements themselves are pointers, the pointed-to memory is not
703 * touched in any way. Managing the pointer is the user's
707 erase(iterator __first
, iterator __last
)
708 { _M_t
.erase(__first
, __last
); }
712 * Erases all elements in a %multiset. Note that this function only
713 * erases the elements, and that if the elements themselves are pointers,
714 * the pointed-to memory is not touched in any way. Managing the pointer
715 * is the user's responsibility.
718 clear() _GLIBCXX_NOEXCEPT
721 // multiset operations:
725 * @brief Finds the number of elements with given key.
726 * @param __x Key of elements to be located.
727 * @return Number of elements with specified key.
730 count(const key_type
& __x
) const
731 { return _M_t
.count(__x
); }
733 #if __cplusplus > 201103L
734 template<typename _Kt
>
736 count(const _Kt
& __x
) const -> decltype(_M_t
._M_count_tr(__x
))
737 { return _M_t
._M_count_tr(__x
); }
741 // _GLIBCXX_RESOLVE_LIB_DEFECTS
742 // 214. set::find() missing const overload
745 * @brief Tries to locate an element in a %set.
746 * @param __x Element to be located.
747 * @return Iterator pointing to sought-after element, or end() if not
750 * This function takes a key and tries to locate the element with which
751 * the key matches. If successful the function returns an iterator
752 * pointing to the sought after element. If unsuccessful it returns the
753 * past-the-end ( @c end() ) iterator.
756 find(const key_type
& __x
)
757 { return _M_t
.find(__x
); }
760 find(const key_type
& __x
) const
761 { return _M_t
.find(__x
); }
763 #if __cplusplus > 201103L
764 template<typename _Kt
>
767 -> decltype(iterator
{_M_t
._M_find_tr(__x
)})
768 { return iterator
{_M_t
._M_find_tr(__x
)}; }
770 template<typename _Kt
>
772 find(const _Kt
& __x
) const
773 -> decltype(const_iterator
{_M_t
._M_find_tr(__x
)})
774 { return const_iterator
{_M_t
._M_find_tr(__x
)}; }
780 * @brief Finds the beginning of a subsequence matching given key.
781 * @param __x Key to be located.
782 * @return Iterator pointing to first element equal to or greater
783 * than key, or end().
785 * This function returns the first element of a subsequence of elements
786 * that matches the given key. If unsuccessful it returns an iterator
787 * pointing to the first element that has a greater value than given key
788 * or end() if no such element exists.
791 lower_bound(const key_type
& __x
)
792 { return _M_t
.lower_bound(__x
); }
795 lower_bound(const key_type
& __x
) const
796 { return _M_t
.lower_bound(__x
); }
798 #if __cplusplus > 201103L
799 template<typename _Kt
>
801 lower_bound(const _Kt
& __x
)
802 -> decltype(iterator(_M_t
._M_lower_bound_tr(__x
)))
803 { return iterator(_M_t
._M_lower_bound_tr(__x
)); }
805 template<typename _Kt
>
807 lower_bound(const _Kt
& __x
) const
808 -> decltype(iterator(_M_t
._M_lower_bound_tr(__x
)))
809 { return iterator(_M_t
._M_lower_bound_tr(__x
)); }
815 * @brief Finds the end of a subsequence matching given key.
816 * @param __x Key to be located.
817 * @return Iterator pointing to the first element
818 * greater than key, or end().
821 upper_bound(const key_type
& __x
)
822 { return _M_t
.upper_bound(__x
); }
825 upper_bound(const key_type
& __x
) const
826 { return _M_t
.upper_bound(__x
); }
828 #if __cplusplus > 201103L
829 template<typename _Kt
>
831 upper_bound(const _Kt
& __x
)
832 -> decltype(iterator(_M_t
._M_upper_bound_tr(__x
)))
833 { return iterator(_M_t
._M_upper_bound_tr(__x
)); }
835 template<typename _Kt
>
837 upper_bound(const _Kt
& __x
) const
838 -> decltype(iterator(_M_t
._M_upper_bound_tr(__x
)))
839 { return iterator(_M_t
._M_upper_bound_tr(__x
)); }
845 * @brief Finds a subsequence matching given key.
846 * @param __x Key to be located.
847 * @return Pair of iterators that possibly points to the subsequence
848 * matching given key.
850 * This function is equivalent to
852 * std::make_pair(c.lower_bound(val),
853 * c.upper_bound(val))
855 * (but is faster than making the calls separately).
857 * This function probably only makes sense for multisets.
859 std::pair
<iterator
, iterator
>
860 equal_range(const key_type
& __x
)
861 { return _M_t
.equal_range(__x
); }
863 std::pair
<const_iterator
, const_iterator
>
864 equal_range(const key_type
& __x
) const
865 { return _M_t
.equal_range(__x
); }
867 #if __cplusplus > 201103L
868 template<typename _Kt
>
870 equal_range(const _Kt
& __x
)
871 -> decltype(pair
<iterator
, iterator
>(_M_t
._M_equal_range_tr(__x
)))
872 { return pair
<iterator
, iterator
>(_M_t
._M_equal_range_tr(__x
)); }
874 template<typename _Kt
>
876 equal_range(const _Kt
& __x
) const
877 -> decltype(pair
<iterator
, iterator
>(_M_t
._M_equal_range_tr(__x
)))
878 { return pair
<iterator
, iterator
>(_M_t
._M_equal_range_tr(__x
)); }
882 template<typename _K1
, typename _C1
, typename _A1
>
884 operator==(const multiset
<_K1
, _C1
, _A1
>&,
885 const multiset
<_K1
, _C1
, _A1
>&);
887 template<typename _K1
, typename _C1
, typename _A1
>
889 operator< (const multiset
<_K1
, _C1
, _A1
>&,
890 const multiset
<_K1
, _C1
, _A1
>&);
893 #if __cpp_deduction_guides >= 201606
895 template<typename _InputIterator
,
897 less
<typename iterator_traits
<_InputIterator
>::value_type
>,
898 typename _Allocator
=
899 allocator
<typename iterator_traits
<_InputIterator
>::value_type
>,
900 typename
= _RequireInputIter
<_InputIterator
>,
901 typename
= _RequireAllocator
<_Allocator
>>
902 multiset(_InputIterator
, _InputIterator
,
903 _Compare
= _Compare(), _Allocator
= _Allocator())
904 -> multiset
<typename iterator_traits
<_InputIterator
>::value_type
,
905 _Compare
, _Allocator
>;
907 template<typename _Key
,
908 typename _Compare
= less
<_Key
>,
909 typename _Allocator
= allocator
<_Key
>,
910 typename
= _RequireAllocator
<_Allocator
>>
911 multiset(initializer_list
<_Key
>,
912 _Compare
= _Compare(), _Allocator
= _Allocator())
913 -> multiset
<_Key
, _Compare
, _Allocator
>;
915 template<typename _InputIterator
, typename _Allocator
,
916 typename
= _RequireInputIter
<_InputIterator
>,
917 typename
= _RequireAllocator
<_Allocator
>>
918 multiset(_InputIterator
, _InputIterator
, _Allocator
)
919 -> multiset
<typename iterator_traits
<_InputIterator
>::value_type
,
920 less
<typename iterator_traits
<_InputIterator
>::value_type
>,
923 template<typename _Key
, typename _Allocator
,
924 typename
= _RequireAllocator
<_Allocator
>>
925 multiset(initializer_list
<_Key
>, _Allocator
)
926 -> multiset
<_Key
, less
<_Key
>, _Allocator
>;
931 * @brief Multiset equality comparison.
932 * @param __x A %multiset.
933 * @param __y A %multiset of the same type as @a __x.
934 * @return True iff the size and elements of the multisets are equal.
936 * This is an equivalence relation. It is linear in the size of the
938 * Multisets are considered equivalent if their sizes are equal, and if
939 * corresponding elements compare equal.
941 template<typename _Key
, typename _Compare
, typename _Alloc
>
943 operator==(const multiset
<_Key
, _Compare
, _Alloc
>& __x
,
944 const multiset
<_Key
, _Compare
, _Alloc
>& __y
)
945 { return __x
._M_t
== __y
._M_t
; }
948 * @brief Multiset ordering relation.
949 * @param __x A %multiset.
950 * @param __y A %multiset of the same type as @a __x.
951 * @return True iff @a __x is lexicographically less than @a __y.
953 * This is a total ordering relation. It is linear in the size of the
954 * sets. The elements must be comparable with @c <.
956 * See std::lexicographical_compare() for how the determination is made.
958 template<typename _Key
, typename _Compare
, typename _Alloc
>
960 operator<(const multiset
<_Key
, _Compare
, _Alloc
>& __x
,
961 const multiset
<_Key
, _Compare
, _Alloc
>& __y
)
962 { return __x
._M_t
< __y
._M_t
; }
964 /// Returns !(x == y).
965 template<typename _Key
, typename _Compare
, typename _Alloc
>
967 operator!=(const multiset
<_Key
, _Compare
, _Alloc
>& __x
,
968 const multiset
<_Key
, _Compare
, _Alloc
>& __y
)
969 { return !(__x
== __y
); }
972 template<typename _Key
, typename _Compare
, typename _Alloc
>
974 operator>(const multiset
<_Key
,_Compare
,_Alloc
>& __x
,
975 const multiset
<_Key
,_Compare
,_Alloc
>& __y
)
976 { return __y
< __x
; }
979 template<typename _Key
, typename _Compare
, typename _Alloc
>
981 operator<=(const multiset
<_Key
, _Compare
, _Alloc
>& __x
,
982 const multiset
<_Key
, _Compare
, _Alloc
>& __y
)
983 { return !(__y
< __x
); }
986 template<typename _Key
, typename _Compare
, typename _Alloc
>
988 operator>=(const multiset
<_Key
, _Compare
, _Alloc
>& __x
,
989 const multiset
<_Key
, _Compare
, _Alloc
>& __y
)
990 { return !(__x
< __y
); }
992 /// See std::multiset::swap().
993 template<typename _Key
, typename _Compare
, typename _Alloc
>
995 swap(multiset
<_Key
, _Compare
, _Alloc
>& __x
,
996 multiset
<_Key
, _Compare
, _Alloc
>& __y
)
997 _GLIBCXX_NOEXCEPT_IF(noexcept(__x
.swap(__y
)))
1000 _GLIBCXX_END_NAMESPACE_CONTAINER
1002 #if __cplusplus > 201402L
1003 // Allow std::multiset access to internals of compatible sets.
1004 template<typename _Val
, typename _Cmp1
, typename _Alloc
, typename _Cmp2
>
1006 _Rb_tree_merge_helper
<_GLIBCXX_STD_C::multiset
<_Val
, _Cmp1
, _Alloc
>,
1010 friend class _GLIBCXX_STD_C::multiset
<_Val
, _Cmp1
, _Alloc
>;
1013 _S_get_tree(_GLIBCXX_STD_C::set
<_Val
, _Cmp2
, _Alloc
>& __set
)
1014 { return __set
._M_t
; }
1017 _S_get_tree(_GLIBCXX_STD_C::multiset
<_Val
, _Cmp2
, _Alloc
>& __set
)
1018 { return __set
._M_t
; }
1023 _GLIBCXX_END_NAMESPACE_VERSION
1026 #endif /* _STL_MULTISET_H */