29 #ifndef _GLIBCXX_PROFILE_MULTIMAP_H 30 #define _GLIBCXX_PROFILE_MULTIMAP_H 1 35 namespace std _GLIBCXX_VISIBILITY(default)
40 template<
typename _Key,
typename _Tp,
typename _Compare = std::less<_Key>,
41 typename _Allocator = std::allocator<std::pair<const _Key, _Tp> > >
43 :
public _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator>,
44 public _Ordered_profile<map<_Key, _Tp, _Compare, _Allocator> >
46 typedef _GLIBCXX_STD_C::multimap<_Key, _Tp, _Compare, _Allocator>
_Base;
48 typedef typename _Base::iterator _Base_iterator;
49 typedef typename _Base::const_iterator _Base_const_iterator;
53 typedef _Key key_type;
54 typedef _Tp mapped_type;
56 typedef _Compare key_compare;
57 typedef typename _Base::reference reference;
58 typedef typename _Base::const_reference const_reference;
60 typedef __iterator_tracker<_Base_iterator,
62 typedef __iterator_tracker<_Base_const_iterator,
67 typedef typename _Base::size_type size_type;
68 typedef typename _Base::difference_type difference_type;
72 #if __cplusplus < 201103L 85 explicit multimap(
const _Compare& __comp,
86 const _Allocator& __a = _Allocator())
87 :
_Base(__comp, __a) { }
89 #if __cplusplus >= 201103L 90 template<
typename _InputIterator,
91 typename = std::_RequireInputIter<_InputIterator>>
93 template<
typename _InputIterator>
95 multimap(_InputIterator __first, _InputIterator __last,
96 const _Compare& __comp = _Compare(),
97 const _Allocator& __a = _Allocator())
98 :
_Base(__first, __last, __comp, __a) { }
100 #if __cplusplus >= 201103L 102 const _Compare& __c = _Compare(),
103 const _Allocator& __a = _Allocator())
104 :
_Base(__l, __c, __a) { }
111 :
_Base(__x, __a) { }
114 noexcept( noexcept(
_Base(std::move(__x), __a)) )
115 :
_Base(std::move(__x), __a) { }
118 :
_Base(__l, __a) { }
120 template<
typename _InputIterator>
121 multimap(_InputIterator __first, _InputIterator __last,
122 const _Allocator& __a)
123 :
_Base(__first, __last, __a) { }
129 #if __cplusplus < 201103L 133 this->_M_profile_destruct();
135 this->_M_profile_construct();
140 operator=(
const multimap&) =
default;
148 this->_M_profile_destruct();
150 this->_M_profile_construct();
157 begin() _GLIBCXX_NOEXCEPT
158 {
return iterator(_Base::begin(),
this); }
161 begin()
const _GLIBCXX_NOEXCEPT
162 {
return const_iterator(_Base::begin(),
this); }
165 end() _GLIBCXX_NOEXCEPT
166 {
return iterator(_Base::end(),
this); }
169 end()
const _GLIBCXX_NOEXCEPT
170 {
return const_iterator(_Base::end(),
this); }
172 #if __cplusplus >= 201103L 174 cbegin()
const noexcept
175 {
return const_iterator(_Base::cbegin(),
this); }
178 cend()
const noexcept
179 {
return const_iterator(_Base::cend(),
this); }
183 rbegin() _GLIBCXX_NOEXCEPT
185 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
190 rbegin()
const _GLIBCXX_NOEXCEPT
192 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
197 rend() _GLIBCXX_NOEXCEPT
199 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
204 rend()
const _GLIBCXX_NOEXCEPT
206 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
210 #if __cplusplus >= 201103L 212 crbegin()
const noexcept
214 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
219 crend()
const noexcept
221 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
227 #if __cplusplus >= 201103L 228 template<
typename... _Args>
230 emplace(_Args&&... __args)
232 __profcxx_map2umap_insert(this->_M_map2umap_info, this->size(), 1);
233 return iterator(_Base::emplace(std::forward<_Args>(__args)...),
this);
236 template<
typename... _Args>
238 emplace_hint(const_iterator __pos, _Args&&... __args)
240 auto size_before = this->size();
242 = _Base::emplace_hint(__pos.base(), std::forward<_Args>(__args)...);
243 __profcxx_map2umap_insert(this->_M_map2umap_info,
244 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1);
245 return iterator(__res,
this);
252 __profcxx_map2umap_insert(this->_M_map2umap_info, this->size(), 1);
253 return iterator(_Base::insert(__x),
this);
256 #if __cplusplus >= 201103L 257 template<
typename _Pair,
typename =
typename 259 _Pair&&>::value>::type>
263 __profcxx_map2umap_insert(this->_M_map2umap_info, this->size(), 1);
264 return iterator(_Base::insert(std::forward<_Pair>(__x)),
this);
268 #if __cplusplus >= 201103L 271 { insert(__list.begin(), __list.end()); }
275 #if __cplusplus >= 201103L 276 insert(const_iterator __pos,
const value_type& __x)
281 size_type size_before = this->size();
282 _Base_iterator __res = _Base::insert(__pos.base(), __x);
283 __profcxx_map2umap_insert(this->_M_map2umap_info,
284 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1);
285 return iterator(__res,
this);
288 #if __cplusplus >= 201103L 289 template<
typename _Pair,
typename =
typename 291 _Pair&&>::value>::type>
293 insert(const_iterator __pos, _Pair&& __x)
295 size_type size_before = this->size();
296 auto __res = _Base::insert(__pos.base(), std::forward<_Pair>(__x));
297 __profcxx_map2umap_insert(this->_M_map2umap_info,
298 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1);
299 return iterator(__res,
this);
303 template<
typename _InputIterator>
305 insert(_InputIterator __first, _InputIterator __last)
307 for (; __first != __last; ++__first)
311 #if __cplusplus >= 201103L 313 erase(const_iterator __pos)
315 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
316 return iterator(_Base::erase(__pos.base()),
this);
320 erase(iterator __pos)
322 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
323 return iterator(_Base::erase(__pos.base()),
this);
327 erase(iterator __pos)
329 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
330 _Base::erase(__pos.base());
335 erase(
const key_type& __x)
337 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
338 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
339 return _Base::erase(__x);
342 #if __cplusplus >= 201103L 344 erase(const_iterator __first, const_iterator __last)
346 if (__first != __last)
349 for (; __first != __last;)
350 __ret = erase(__first++);
354 return iterator(_Base::erase(__first.base(), __last.base()),
this);
358 erase(iterator __first, iterator __last)
360 for (; __first != __last;)
367 _GLIBCXX_NOEXCEPT_IF( noexcept(declval<_Base&>().swap(__x)) )
369 std::swap(this->_M_map2umap_info, __x._M_map2umap_info);
374 clear() _GLIBCXX_NOEXCEPT
376 this->_M_profile_destruct();
378 this->_M_profile_construct();
383 find(
const key_type& __x)
385 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
386 return iterator(_Base::find(__x),
this);
389 #if __cplusplus > 201103L 390 template<
typename _Kt,
392 typename __has_is_transparent<_Compare, _Kt>::type>
396 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
397 return { _Base::find(__x),
this };
402 find(
const key_type& __x)
const 404 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
405 return const_iterator(_Base::find(__x),
this);
408 #if __cplusplus > 201103L 409 template<
typename _Kt,
411 typename __has_is_transparent<_Compare, _Kt>::type>
413 find(
const _Kt& __x)
const 415 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
416 return { _Base::find(__x),
this };
421 count(
const key_type& __x)
const 423 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
424 return _Base::count(__x);
427 #if __cplusplus > 201103L 428 template<
typename _Kt,
430 typename __has_is_transparent<_Compare, _Kt>::type>
432 count(
const _Kt& __x)
const 434 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
435 return _Base::count(__x);
440 lower_bound(
const key_type& __x)
442 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
443 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
444 return iterator(_Base::lower_bound(__x),
this);
447 #if __cplusplus > 201103L 448 template<
typename _Kt,
450 typename __has_is_transparent<_Compare, _Kt>::type>
452 lower_bound(
const _Kt& __x)
454 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
455 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
456 return { _Base::lower_bound(__x),
this };
461 lower_bound(
const key_type& __x)
const 463 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
464 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
465 return const_iterator(_Base::lower_bound(__x),
this);
468 #if __cplusplus > 201103L 469 template<
typename _Kt,
471 typename __has_is_transparent<_Compare, _Kt>::type>
473 lower_bound(
const _Kt& __x)
const 475 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
476 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
477 return { _Base::lower_bound(__x),
this };
482 upper_bound(
const key_type& __x)
484 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
485 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
486 return iterator(_Base::upper_bound(__x),
this);
489 #if __cplusplus > 201103L 490 template<
typename _Kt,
492 typename __has_is_transparent<_Compare, _Kt>::type>
494 upper_bound(
const _Kt& __x)
496 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
497 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
498 return { _Base::upper_bound(__x),
this };
503 upper_bound(
const key_type& __x)
const 505 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
506 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
507 return const_iterator(_Base::upper_bound(__x),
this);
510 #if __cplusplus > 201103L 511 template<
typename _Kt,
513 typename __has_is_transparent<_Compare, _Kt>::type>
515 upper_bound(
const _Kt& __x)
const 517 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
518 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
519 return { _Base::upper_bound(__x),
this };
524 equal_range(
const key_type& __x)
526 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
528 = _Base::equal_range(__x);
530 iterator(__base_ret.
second,
this));
533 #if __cplusplus > 201103L 534 template<
typename _Kt,
536 typename __has_is_transparent<_Compare, _Kt>::type>
538 equal_range(
const _Kt& __x)
540 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
541 auto __res = _Base::equal_range(__x);
542 return { { __res.first,
this }, { __res.second,
this } };
547 equal_range(
const key_type& __x)
const 549 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
551 = _Base::equal_range(__x);
553 const_iterator(__base_ret.
second,
this));
556 #if __cplusplus > 201103L 557 template<
typename _Kt,
559 typename __has_is_transparent<_Compare, _Kt>::type>
561 equal_range(
const _Kt& __x)
const 563 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
564 auto __res = _Base::equal_range(__x);
565 return { { __res.first,
this }, { __res.second,
this } };
570 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
573 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
583 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res)
585 return (__hint == __res
586 || (__hint == _M_base().end() && ++__res == _M_base().end())
587 || (__hint != _M_base().end() && (++__hint == __res
588 || ++__res == --__hint)));
591 template<
typename _K1,
typename _T1,
typename _C1,
typename _A1>
596 template<
typename _K1,
typename _T1,
typename _C1,
typename _A1>
598 operator<(const multimap<_K1, _T1, _C1, _A1>&,
602 template<
typename _Key,
typename _Tp,
603 typename _Compare,
typename _Allocator>
608 __profcxx_map2umap_invalidate(__lhs._M_map2umap_info);
609 __profcxx_map2umap_invalidate(__rhs._M_map2umap_info);
610 return __lhs._M_base() == __rhs._M_base();
613 template<
typename _Key,
typename _Tp,
614 typename _Compare,
typename _Allocator>
616 operator<(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
619 __profcxx_map2umap_invalidate(__lhs._M_map2umap_info);
620 __profcxx_map2umap_invalidate(__rhs._M_map2umap_info);
621 return __lhs._M_base() < __rhs._M_base();
624 template<
typename _Key,
typename _Tp,
625 typename _Compare,
typename _Allocator>
627 operator!=(
const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
628 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
629 {
return !(__lhs == __rhs); }
631 template<
typename _Key,
typename _Tp,
632 typename _Compare,
typename _Allocator>
634 operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
635 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
636 {
return !(__rhs < __lhs); }
638 template<
typename _Key,
typename _Tp,
639 typename _Compare,
typename _Allocator>
641 operator>=(
const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
642 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
643 {
return !(__lhs < __rhs); }
645 template<
typename _Key,
typename _Tp,
646 typename _Compare,
typename _Allocator>
648 operator>(
const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
649 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
650 {
return __rhs < __lhs; }
652 template<
typename _Key,
typename _Tp,
653 typename _Compare,
typename _Allocator>
655 swap(multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
656 multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
657 _GLIBCXX_NOEXCEPT_IF(noexcept(__lhs.swap(__rhs)))
658 { __lhs.swap(__rhs); }
_T2 second
first is a copy of the first object
ISO C++ entities toplevel namespace is std.
_T1 first
second_type is the second bound type
Sequential helper functions. This file is a GNU profile extension to the Standard C++ Library...
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.
Class std::multimap wrapper with performance instrumentation.
Struct holding two objects of arbitrary type.
A standard container made up of (key,value) pairs, which can be retrieved based on a key...
Define a member typedef type only if a boolean constant is true.