46 multiset<_Key, _Compare, _Allocator>, _Allocator,
47 __gnu_debug::_Safe_node_sequence>,
48 public _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator>
50 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base;
54 typedef typename _Base::const_iterator _Base_const_iterator;
55 typedef typename _Base::iterator _Base_iterator;
58 template<
typename _ItT,
typename _SeqT,
typename _CatT>
59 friend class ::__gnu_debug::_Safe_iterator;
66 _Base_ref(
const _Base& __r) : _M_ref(__r) { }
73 typedef _Key key_type;
74 typedef _Key value_type;
75 typedef _Compare key_compare;
76 typedef _Compare value_compare;
77 typedef _Allocator allocator_type;
78 typedef typename _Base::reference reference;
79 typedef typename _Base::const_reference const_reference;
84 multiset> const_iterator;
86 typedef typename _Base::size_type size_type;
87 typedef typename _Base::difference_type difference_type;
88 typedef typename _Base::pointer pointer;
89 typedef typename _Base::const_pointer const_pointer;
95#if __cplusplus < 201103L
96 multiset() : _Base() { }
98 multiset(
const multiset& __x)
103 multiset() =
default;
104 multiset(
const multiset&) =
default;
105 multiset(multiset&&) =
default;
108 const _Compare& __comp = _Compare(),
109 const allocator_type& __a = allocator_type())
110 : _Base(__l, __comp, __a) { }
113 multiset(
const allocator_type& __a)
116 multiset(
const multiset& __m,
const allocator_type& __a)
117 : _Base(__m, __a) { }
119 multiset(multiset&& __m,
const allocator_type& __a)
120 noexcept(
noexcept(_Base(
std::move(__m._M_base()), __a)) )
128 template<
typename _InputIterator>
129 multiset(_InputIterator __first, _InputIterator __last,
130 const allocator_type& __a)
132 __glibcxx_check_valid_constructor_range(__first, __last)),
135 ~multiset() =
default;
138 explicit multiset(
const _Compare& __comp,
139 const _Allocator& __a = _Allocator())
140 : _Base(__comp, __a) { }
142 template<
typename _InputIterator>
143 multiset(_InputIterator __first, _InputIterator __last,
144 const _Compare& __comp = _Compare(),
145 const _Allocator& __a = _Allocator())
147 __glibcxx_check_valid_constructor_range(__first, __last)),
151 multiset(_Base_ref __x)
152 : _Base(__x._M_ref) { }
154#if __cplusplus < 201103L
156 operator=(
const multiset& __x)
158 this->_M_safe() = __x;
164 operator=(
const multiset&) =
default;
167 operator=(multiset&&) =
default;
173 this->_M_invalidate_all();
178 using _Base::get_allocator;
182 begin() _GLIBCXX_NOEXCEPT
183 {
return iterator(_Base::begin(),
this); }
186 begin()
const _GLIBCXX_NOEXCEPT
187 {
return const_iterator(_Base::begin(),
this); }
190 end() _GLIBCXX_NOEXCEPT
191 {
return iterator(_Base::end(),
this); }
194 end()
const _GLIBCXX_NOEXCEPT
195 {
return const_iterator(_Base::end(),
this); }
198 rbegin() _GLIBCXX_NOEXCEPT
199 {
return reverse_iterator(end()); }
201 const_reverse_iterator
202 rbegin()
const _GLIBCXX_NOEXCEPT
203 {
return const_reverse_iterator(end()); }
206 rend() _GLIBCXX_NOEXCEPT
207 {
return reverse_iterator(begin()); }
209 const_reverse_iterator
210 rend()
const _GLIBCXX_NOEXCEPT
211 {
return const_reverse_iterator(begin()); }
213#if __cplusplus >= 201103L
215 cbegin()
const noexcept
216 {
return const_iterator(_Base::begin(),
this); }
219 cend()
const noexcept
220 {
return const_iterator(_Base::end(),
this); }
222 const_reverse_iterator
223 crbegin()
const noexcept
224 {
return const_reverse_iterator(end()); }
226 const_reverse_iterator
227 crend()
const noexcept
228 {
return const_reverse_iterator(begin()); }
234 using _Base::max_size;
237#if __cplusplus >= 201103L
238 template<
typename... _Args>
240 emplace(_Args&&... __args)
243 template<
typename... _Args>
245 emplace_hint(const_iterator __pos, _Args&&... __args)
257 insert(
const value_type& __x)
258 {
return iterator(_Base::insert(__x),
this); }
260#if __cplusplus >= 201103L
262 insert(value_type&& __x)
263 {
return { _Base::insert(
std::move(__x)),
this }; }
267 insert(const_iterator __position,
const value_type& __x)
270 return iterator(_Base::insert(__position.
base(), __x),
this);
273#if __cplusplus >= 201103L
275 insert(const_iterator __position, value_type&& __x)
278 return { _Base::insert(__position.
base(),
std::move(__x)),
this };
282 template<
typename _InputIterator>
284 insert(_InputIterator __first, _InputIterator __last)
286 typename __gnu_debug::_Distance_traits<_InputIterator>::__type __dist;
287 __glibcxx_check_valid_range2(__first, __last, __dist);
289 if (__dist.second >= __gnu_debug::__dp_sign)
290 _Base::insert(__gnu_debug::__unsafe(__first),
291 __gnu_debug::__unsafe(__last));
293 _Base::insert(__first, __last);
296#if __cplusplus >= 201103L
299 { _Base::insert(__l); }
302#if __cplusplus > 201402L
303 using node_type =
typename _Base::node_type;
306 extract(const_iterator __position)
309 this->_M_invalidate_if(_Equal(__position.
base()));
310 return _Base::extract(__position.
base());
314 extract(
const key_type& __key)
316 const auto __position = find(__key);
317 if (__position != end())
318 return extract(__position);
323 insert(node_type&& __nh)
324 {
return { _Base::insert(
std::move(__nh)),
this }; }
327 insert(const_iterator __hint, node_type&& __nh)
330 return { _Base::insert(__hint.
base(),
std::move(__nh)),
this };
336#if __cplusplus >= 201103L
337 _GLIBCXX_ABI_TAG_CXX11
339 erase(const_iterator __position)
342 this->_M_invalidate_if(_Equal(__position.
base()));
343 return { _Base::erase(__position.
base()),
this };
347 erase(iterator __position)
350 this->_M_invalidate_if(_Equal(__position.
base()));
351 _Base::erase(__position.
base());
356 erase(
const key_type& __x)
359 _Base::equal_range(__x);
360 size_type __count = 0;
361 _Base_iterator __victim = __victims.
first;
362 while (__victim != __victims.
second)
364 this->_M_invalidate_if(_Equal(__victim));
365 _Base::erase(__victim++);
371#if __cplusplus >= 201103L
372 _GLIBCXX_ABI_TAG_CXX11
374 erase(const_iterator __first, const_iterator __last)
379 for (_Base_const_iterator __victim = __first.base();
380 __victim != __last.
base(); ++__victim)
382 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::cend(),
383 _M_message(__gnu_debug::__msg_valid_range)
384 ._M_iterator(__first,
"first")
385 ._M_iterator(__last,
"last"));
386 this->_M_invalidate_if(_Equal(__victim));
389 return { _Base::erase(__first.base(), __last.
base()),
this };
393 erase(iterator __first, iterator __last)
398 for (_Base_iterator __victim = __first.base();
399 __victim != __last.
base(); ++__victim)
401 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
402 _M_message(__gnu_debug::__msg_valid_range)
403 ._M_iterator(__first,
"first")
404 ._M_iterator(__last,
"last"));
405 this->_M_invalidate_if(_Equal(__victim));
407 _Base::erase(__first.base(), __last.
base());
420 clear() _GLIBCXX_NOEXCEPT
422 this->_M_invalidate_all();
427 using _Base::key_comp;
428 using _Base::value_comp;
432 find(
const key_type& __x)
433 {
return iterator(_Base::find(__x),
this); }
438 find(
const key_type& __x)
const
439 {
return const_iterator(_Base::find(__x),
this); }
441#if __cplusplus > 201103L
442 template<
typename _Kt,
444 typename __has_is_transparent<_Compare, _Kt>::type>
447 {
return { _Base::find(__x),
this }; }
449 template<
typename _Kt,
451 typename __has_is_transparent<_Compare, _Kt>::type>
453 find(
const _Kt& __x)
const
454 {
return { _Base::find(__x),
this }; }
460 lower_bound(
const key_type& __x)
461 {
return iterator(_Base::lower_bound(__x),
this); }
466 lower_bound(
const key_type& __x)
const
467 {
return const_iterator(_Base::lower_bound(__x),
this); }
469#if __cplusplus > 201103L
470 template<
typename _Kt,
472 typename __has_is_transparent<_Compare, _Kt>::type>
474 lower_bound(
const _Kt& __x)
475 {
return { _Base::lower_bound(__x),
this }; }
477 template<
typename _Kt,
479 typename __has_is_transparent<_Compare, _Kt>::type>
481 lower_bound(
const _Kt& __x)
const
482 {
return { _Base::lower_bound(__x),
this }; }
486 upper_bound(
const key_type& __x)
487 {
return iterator(_Base::upper_bound(__x),
this); }
492 upper_bound(
const key_type& __x)
const
493 {
return const_iterator(_Base::upper_bound(__x),
this); }
495#if __cplusplus > 201103L
496 template<
typename _Kt,
498 typename __has_is_transparent<_Compare, _Kt>::type>
500 upper_bound(
const _Kt& __x)
501 {
return { _Base::upper_bound(__x),
this }; }
503 template<
typename _Kt,
505 typename __has_is_transparent<_Compare, _Kt>::type>
507 upper_bound(
const _Kt& __x)
const
508 {
return { _Base::upper_bound(__x),
this }; }
512 equal_range(
const key_type& __x)
515 _Base::equal_range(__x);
517 iterator(__res.
second,
this));
523 equal_range(
const key_type& __x)
const
526 _Base::equal_range(__x);
528 const_iterator(__res.
second,
this));
531#if __cplusplus > 201103L
532 template<
typename _Kt,
534 typename __has_is_transparent<_Compare, _Kt>::type>
536 equal_range(
const _Kt& __x)
538 auto __res = _Base::equal_range(__x);
539 return { { __res.first,
this }, { __res.second,
this } };
542 template<
typename _Kt,
544 typename __has_is_transparent<_Compare, _Kt>::type>
546 equal_range(
const _Kt& __x)
const
548 auto __res = _Base::equal_range(__x);
549 return { { __res.first,
this }, { __res.second,
this } };
554 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
557 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }