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) { }
107 multimap(
const _Allocator& __a)
110 multimap(
const multimap& __x,
const _Allocator& __a)
111 : _Base(__x, __a) { }
113 multimap(multimap&& __x,
const _Allocator& __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) { }
126 multimap(
const _Base& __x)
129 #if __cplusplus < 201103L 131 operator=(
const multimap& __x)
133 this->_M_profile_destruct();
135 this->_M_profile_construct();
140 operator=(
const multimap&) =
default;
143 operator=(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);
186 return reverse_iterator(end());
189 const_reverse_iterator
190 rbegin()
const _GLIBCXX_NOEXCEPT
192 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
193 return const_reverse_iterator(end());
197 rend() _GLIBCXX_NOEXCEPT
199 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
200 return reverse_iterator(begin());
203 const_reverse_iterator
204 rend()
const _GLIBCXX_NOEXCEPT
206 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
207 return const_reverse_iterator(begin());
210 #if __cplusplus >= 201103L 211 const_reverse_iterator
212 crbegin()
const noexcept
214 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
215 return const_reverse_iterator(cend());
218 const_reverse_iterator
219 crend()
const noexcept
221 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
222 return const_reverse_iterator(cbegin());
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);
250 insert(
const value_type& __x)
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 258 std::enable_if<std::is_constructible<value_type,
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)
278 insert(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 290 std::enable_if<std::is_constructible<value_type,
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 #if __cplusplus >= 201103L 368 noexcept( noexcept(declval<_Base>().swap(__x)) )
371 std::swap(this->_M_map2umap_info, __x._M_map2umap_info);
376 clear() _GLIBCXX_NOEXCEPT
378 this->_M_profile_destruct();
380 this->_M_profile_construct();
385 find(
const key_type& __x)
387 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
388 return iterator(_Base::find(__x),
this);
392 find(
const key_type& __x)
const 394 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
395 return const_iterator(_Base::find(__x),
this);
399 count(
const key_type& __x)
const 401 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
402 return _Base::count(__x);
406 lower_bound(
const key_type& __x)
408 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
409 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
410 return iterator(_Base::lower_bound(__x),
this);
414 lower_bound(
const key_type& __x)
const 416 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
417 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
418 return const_iterator(_Base::lower_bound(__x),
this);
422 upper_bound(
const key_type& __x)
424 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
425 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
426 return iterator(_Base::upper_bound(__x),
this);
430 upper_bound(
const key_type& __x)
const 432 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
433 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
434 return const_iterator(_Base::upper_bound(__x),
this);
438 equal_range(
const key_type& __x)
440 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
442 = _Base::equal_range(__x);
444 iterator(__base_ret.
second,
this));
448 equal_range(
const key_type& __x)
const 450 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
452 = _Base::equal_range(__x);
454 const_iterator(__base_ret.
second,
this));
458 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
461 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
471 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res)
473 return (__hint == __res
474 || (__hint == _M_base().end() && ++__res == _M_base().end())
475 || (__hint != _M_base().end() && (++__hint == __res
476 || ++__res == --__hint)));
479 template<
typename _K1,
typename _T1,
typename _C1,
typename _A1>
484 template<
typename _K1,
typename _T1,
typename _C1,
typename _A1>
486 operator<(const multimap<_K1, _T1, _C1, _A1>&,
490 template<
typename _Key,
typename _Tp,
491 typename _Compare,
typename _Allocator>
496 __profcxx_map2umap_invalidate(__lhs._M_map2umap_info);
497 __profcxx_map2umap_invalidate(__rhs._M_map2umap_info);
498 return __lhs._M_base() == __rhs._M_base();
501 template<
typename _Key,
typename _Tp,
502 typename _Compare,
typename _Allocator>
504 operator<(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
507 __profcxx_map2umap_invalidate(__lhs._M_map2umap_info);
508 __profcxx_map2umap_invalidate(__rhs._M_map2umap_info);
509 return __lhs._M_base() < __rhs._M_base();
512 template<
typename _Key,
typename _Tp,
513 typename _Compare,
typename _Allocator>
517 {
return !(__lhs == __rhs); }
519 template<
typename _Key,
typename _Tp,
520 typename _Compare,
typename _Allocator>
522 operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
524 {
return !(__rhs < __lhs); }
526 template<
typename _Key,
typename _Tp,
527 typename _Compare,
typename _Allocator>
531 {
return !(__lhs < __rhs); }
533 template<
typename _Key,
typename _Tp,
534 typename _Compare,
typename _Allocator>
538 {
return __rhs < __lhs; }
540 template<
typename _Key,
typename _Tp,
541 typename _Compare,
typename _Allocator>
545 { __lhs.swap(__rhs); }
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.
_T2 second
first is a copy of the first object
Struct holding two objects of arbitrary type.
_T1 first
second_type is the second bound type
Sequential helper functions. This file is a GNU profile extension to the Standard C++ Library...
ISO C++ entities toplevel namespace is std.