29 #ifndef _GLIBCXX_DEBUG_MULTIMAP_H 30 #define _GLIBCXX_DEBUG_MULTIMAP_H 1 37 namespace std _GLIBCXX_VISIBILITY(default)
42 template<
typename _Key,
typename _Tp,
typename _Compare = std::less<_Key>,
43 typename _Allocator = std::allocator<std::pair<const _Key, _Tp> > >
46 multimap<_Key, _Tp, _Compare, _Allocator>, _Allocator,
47 __gnu_debug::_Safe_node_sequence>,
48 public _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator>
50 typedef _GLIBCXX_STD_C::multimap<
51 _Key, _Tp, _Compare, _Allocator>
_Base;
61 typedef _Key key_type;
62 typedef _Tp mapped_type;
64 typedef _Compare key_compare;
65 typedef _Allocator allocator_type;
66 typedef typename _Base::reference reference;
67 typedef typename _Base::const_reference const_reference;
74 typedef typename _Base::size_type size_type;
75 typedef typename _Base::difference_type difference_type;
76 typedef typename _Base::pointer pointer;
77 typedef typename _Base::const_pointer const_pointer;
83 #if __cplusplus < 201103L 84 multimap() : _Base() { }
86 multimap(
const multimap& __x)
92 multimap(
const multimap&) =
default;
93 multimap(multimap&&) =
default;
96 const _Compare& __c = _Compare(),
97 const allocator_type& __a = allocator_type())
98 : _Base(__l, __c, __a) { }
101 multimap(
const allocator_type& __a)
104 multimap(
const multimap& __m,
const allocator_type& __a)
105 : _Base(__m, __a) { }
107 multimap(multimap&& __m,
const allocator_type& __a)
108 : _Safe(std::move(__m._M_safe()), __a),
109 _Base(std::move(__m._M_base()), __a) { }
112 : _Base(__l, __a) { }
114 template<
typename _InputIterator>
115 multimap(_InputIterator __first, _InputIterator __last,
116 const allocator_type& __a)
117 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
119 __gnu_debug::__base(__last), __a) { }
121 ~multimap() =
default;
124 explicit multimap(
const _Compare& __comp,
125 const _Allocator& __a = _Allocator())
126 : _Base(__comp, __a) { }
128 template<
typename _InputIterator>
129 multimap(_InputIterator __first, _InputIterator __last,
130 const _Compare& __comp = _Compare(),
131 const _Allocator& __a = _Allocator())
132 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
134 __gnu_debug::__base(__last),
137 multimap(
const _Base& __x)
140 #if __cplusplus < 201103L 142 operator=(
const multimap& __x)
144 this->_M_safe() = __x;
150 operator=(
const multimap&) =
default;
153 operator=(multimap&&) =
default;
159 this->_M_invalidate_all();
164 using _Base::get_allocator;
168 begin() _GLIBCXX_NOEXCEPT
169 {
return iterator(_Base::begin(),
this); }
172 begin()
const _GLIBCXX_NOEXCEPT
173 {
return const_iterator(_Base::begin(),
this); }
176 end() _GLIBCXX_NOEXCEPT
177 {
return iterator(_Base::end(),
this); }
180 end()
const _GLIBCXX_NOEXCEPT
181 {
return const_iterator(_Base::end(),
this); }
184 rbegin() _GLIBCXX_NOEXCEPT
185 {
return reverse_iterator(end()); }
187 const_reverse_iterator
188 rbegin()
const _GLIBCXX_NOEXCEPT
189 {
return const_reverse_iterator(end()); }
192 rend() _GLIBCXX_NOEXCEPT
193 {
return reverse_iterator(begin()); }
195 const_reverse_iterator
196 rend()
const _GLIBCXX_NOEXCEPT
197 {
return const_reverse_iterator(begin()); }
199 #if __cplusplus >= 201103L 201 cbegin()
const noexcept
202 {
return const_iterator(_Base::begin(),
this); }
205 cend()
const noexcept
206 {
return const_iterator(_Base::end(),
this); }
208 const_reverse_iterator
209 crbegin()
const noexcept
210 {
return const_reverse_iterator(end()); }
212 const_reverse_iterator
213 crend()
const noexcept
214 {
return const_reverse_iterator(begin()); }
220 using _Base::max_size;
223 #if __cplusplus >= 201103L 224 template<
typename... _Args>
226 emplace(_Args&&... __args)
228 return iterator(_Base::emplace(std::forward<_Args>(__args)...),
this);
231 template<
typename... _Args>
233 emplace_hint(const_iterator __pos, _Args&&... __args)
236 return iterator(_Base::emplace_hint(__pos.
base(),
237 std::forward<_Args>(__args)...),
243 insert(
const value_type& __x)
244 {
return iterator(_Base::insert(__x),
this); }
246 #if __cplusplus >= 201103L 247 template<
typename _Pair,
typename =
typename 248 std::enable_if<std::is_constructible<value_type,
249 _Pair&&>::value>::type>
252 {
return iterator(_Base::insert(std::forward<_Pair>(__x)),
this); }
255 #if __cplusplus >= 201103L 258 { _Base::insert(__list); }
262 #if __cplusplus >= 201103L 263 insert(const_iterator __position,
const value_type& __x)
265 insert(iterator __position,
const value_type& __x)
269 return iterator(_Base::insert(__position.
base(), __x),
this);
272 #if __cplusplus >= 201103L 273 template<
typename _Pair,
typename =
typename 274 std::enable_if<std::is_constructible<value_type,
275 _Pair&&>::value>::type>
277 insert(const_iterator __position, _Pair&& __x)
280 return iterator(_Base::insert(__position.
base(),
281 std::forward<_Pair>(__x)),
this);
285 template<
typename _InputIterator>
287 insert(_InputIterator __first, _InputIterator __last)
290 __glibcxx_check_valid_range2(__first, __last, __dist);
292 if (__dist.
second >= __gnu_debug::__dp_sign)
293 _Base::insert(__gnu_debug::__unsafe(__first),
294 __gnu_debug::__unsafe(__last));
296 _Base::insert(__first, __last);
299 #if __cplusplus >= 201103L 301 erase(const_iterator __position)
305 return iterator(_Base::erase(__position.
base()),
this);
309 erase(iterator __position)
310 {
return erase(const_iterator(__position)); }
313 erase(iterator __position)
317 _Base::erase(__position.
base());
322 erase(
const key_type& __x)
325 _Base::equal_range(__x);
326 size_type __count = 0;
327 _Base_iterator __victim = __victims.
first;
328 while (__victim != __victims.
second)
331 _Base::erase(__victim++);
337 #if __cplusplus >= 201103L 339 erase(const_iterator __first, const_iterator __last)
344 for (_Base_const_iterator __victim = __first.
base();
345 __victim != __last.
base(); ++__victim)
347 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
348 _M_message(__gnu_debug::__msg_valid_range)
349 ._M_iterator(__first,
"first")
350 ._M_iterator(__last,
"last"));
353 return iterator(_Base::erase(__first.
base(), __last.
base()),
this);
357 erase(iterator __first, iterator __last)
362 for (_Base_iterator __victim = __first.
base();
363 __victim != __last.
base(); ++__victim)
365 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
366 _M_message(__gnu_debug::__msg_valid_range)
367 ._M_iterator(__first,
"first")
368 ._M_iterator(__last,
"last"));
371 _Base::erase(__first.
base(), __last.
base());
377 _GLIBCXX_NOEXCEPT_IF( noexcept(declval<_Base&>().swap(__x)) )
384 clear() _GLIBCXX_NOEXCEPT
386 this->_M_invalidate_all();
391 using _Base::key_comp;
392 using _Base::value_comp;
396 find(
const key_type& __x)
397 {
return iterator(_Base::find(__x),
this); }
399 #if __cplusplus > 201103L 400 template<
typename _Kt,
402 typename __has_is_transparent<_Compare, _Kt>::type>
405 {
return { _Base::find(__x),
this }; }
409 find(
const key_type& __x)
const 410 {
return const_iterator(_Base::find(__x),
this); }
412 #if __cplusplus > 201103L 413 template<
typename _Kt,
415 typename __has_is_transparent<_Compare, _Kt>::type>
417 find(
const _Kt& __x)
const 418 {
return { _Base::find(__x),
this }; }
424 lower_bound(
const key_type& __x)
425 {
return iterator(_Base::lower_bound(__x),
this); }
427 #if __cplusplus > 201103L 428 template<
typename _Kt,
430 typename __has_is_transparent<_Compare, _Kt>::type>
432 lower_bound(
const _Kt& __x)
433 {
return { _Base::lower_bound(__x),
this }; }
437 lower_bound(
const key_type& __x)
const 438 {
return const_iterator(_Base::lower_bound(__x),
this); }
440 #if __cplusplus > 201103L 441 template<
typename _Kt,
443 typename __has_is_transparent<_Compare, _Kt>::type>
445 lower_bound(
const _Kt& __x)
const 446 {
return { _Base::lower_bound(__x),
this }; }
450 upper_bound(
const key_type& __x)
451 {
return iterator(_Base::upper_bound(__x),
this); }
453 #if __cplusplus > 201103L 454 template<
typename _Kt,
456 typename __has_is_transparent<_Compare, _Kt>::type>
458 upper_bound(
const _Kt& __x)
459 {
return { _Base::upper_bound(__x),
this }; }
463 upper_bound(
const key_type& __x)
const 464 {
return const_iterator(_Base::upper_bound(__x),
this); }
466 #if __cplusplus > 201103L 467 template<
typename _Kt,
469 typename __has_is_transparent<_Compare, _Kt>::type>
471 upper_bound(
const _Kt& __x)
const 472 {
return { _Base::upper_bound(__x),
this }; }
476 equal_range(
const key_type& __x)
479 _Base::equal_range(__x);
481 iterator(__res.
second,
this));
484 #if __cplusplus > 201103L 485 template<
typename _Kt,
487 typename __has_is_transparent<_Compare, _Kt>::type>
489 equal_range(
const _Kt& __x)
491 auto __res = _Base::equal_range(__x);
492 return { { __res.first,
this }, { __res.second,
this } };
497 equal_range(
const key_type& __x)
const 500 _Base::equal_range(__x);
502 const_iterator(__res.
second,
this));
505 #if __cplusplus > 201103L 506 template<
typename _Kt,
508 typename __has_is_transparent<_Compare, _Kt>::type>
510 equal_range(
const _Kt& __x)
const 512 auto __res = _Base::equal_range(__x);
513 return { { __res.first,
this }, { __res.second,
this } };
518 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
521 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
524 template<
typename _Key,
typename _Tp,
525 typename _Compare,
typename _Allocator>
529 {
return __lhs._M_base() == __rhs._M_base(); }
531 template<
typename _Key,
typename _Tp,
532 typename _Compare,
typename _Allocator>
536 {
return __lhs._M_base() != __rhs._M_base(); }
538 template<
typename _Key,
typename _Tp,
539 typename _Compare,
typename _Allocator>
541 operator<(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
543 {
return __lhs._M_base() < __rhs._M_base(); }
545 template<
typename _Key,
typename _Tp,
546 typename _Compare,
typename _Allocator>
548 operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
550 {
return __lhs._M_base() <= __rhs._M_base(); }
552 template<
typename _Key,
typename _Tp,
553 typename _Compare,
typename _Allocator>
557 {
return __lhs._M_base() >= __rhs._M_base(); }
559 template<
typename _Key,
typename _Tp,
560 typename _Compare,
typename _Allocator>
564 {
return __lhs._M_base() > __rhs._M_base(); }
566 template<
typename _Key,
typename _Tp,
567 typename _Compare,
typename _Allocator>
571 _GLIBCXX_NOEXCEPT_IF(noexcept(__lhs.swap(__rhs)))
572 { __lhs.swap(__rhs); }
_T2 second
first is a copy of the first object
void _M_invalidate_if(_Predicate __pred)
Safe class dealing with some allocator dependent operations.
_Iterator & base() noexcept
Return the underlying iterator.
_T1 first
second_type is the second bound type
#define __glibcxx_check_erase(_Position)
#define __glibcxx_check_erase_range(_First, _Last)
Struct holding two objects of arbitrary type.
constexpr pair< typename __decay_and_strip< _T1 >::__type, typename __decay_and_strip< _T2 >::__type > make_pair(_T1 &&__x, _T2 &&__y)
A convenience wrapper for creating a pair from two objects.
Like _Safe_sequence but with a special _M_invalidate_all implementation not invalidating past-the-end...
Class std::multimap with safety/checking/debug instrumentation.
ISO C++ entities toplevel namespace is std.
#define __glibcxx_check_insert(_Position)