29 #ifndef _GLIBCXX_PROFILE_MULTISET_H 30 #define _GLIBCXX_PROFILE_MULTISET_H 1 35 namespace std _GLIBCXX_VISIBILITY(default)
40 template<
typename _Key,
typename _Compare = std::less<_Key>,
41 typename _Allocator = std::allocator<_Key> >
43 :
public _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator>,
44 public _Ordered_profile<multiset<_Key, _Compare, _Allocator> >
46 typedef _GLIBCXX_STD_C::multiset<_Key, _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 _Key value_type;
55 typedef _Compare key_compare;
56 typedef _Compare value_compare;
57 typedef _Allocator allocator_type;
58 typedef typename _Base::reference reference;
59 typedef typename _Base::const_reference const_reference;
61 typedef __iterator_tracker<_Base_iterator,
63 typedef __iterator_tracker<_Base_const_iterator,
68 typedef typename _Base::size_type size_type;
69 typedef typename _Base::difference_type difference_type;
73 #if __cplusplus < 201103L 86 explicit multiset(
const _Compare& __comp,
87 const _Allocator& __a = _Allocator())
88 : _Base(__comp, __a) { }
90 #if __cplusplus >= 201103L 91 template<
typename _InputIterator,
92 typename = std::_RequireInputIter<_InputIterator>>
94 template<
typename _InputIterator>
96 multiset(_InputIterator __first, _InputIterator __last,
97 const _Compare& __comp = _Compare(),
98 const _Allocator& __a = _Allocator())
99 : _Base(__first, __last, __comp, __a) { }
101 #if __cplusplus >= 201103L 103 const _Compare& __comp = _Compare(),
104 const allocator_type& __a = allocator_type())
105 : _Base(__l, __comp, __a) { }
108 multiset(
const allocator_type& __a)
111 multiset(
const multiset& __x,
const allocator_type& __a)
112 : _Base(__x, __a) { }
114 multiset(multiset&& __x,
const allocator_type& __a)
115 noexcept( noexcept(_Base(std::move(__x), __a)) )
116 : _Base(std::move(__x), __a) { }
119 : _Base(__l, __a) { }
121 template<
typename _InputIterator>
122 multiset(_InputIterator __first, _InputIterator __last,
123 const allocator_type& __a)
124 : _Base(__first, __last, __a) { }
127 multiset(
const _Base& __x)
130 #if __cplusplus < 201103L 132 operator=(
const multiset& __x)
134 this->_M_profile_destruct();
136 this->_M_profile_construct();
141 operator=(
const multiset&) =
default;
144 operator=(multiset&&) =
default;
149 this->_M_profile_destruct();
151 this->_M_profile_construct();
158 begin() _GLIBCXX_NOEXCEPT
159 {
return iterator(_Base::begin(),
this); }
162 begin()
const _GLIBCXX_NOEXCEPT
163 {
return const_iterator(_Base::begin(),
this); }
166 end() _GLIBCXX_NOEXCEPT
167 {
return iterator(_Base::end(),
this); }
170 end()
const _GLIBCXX_NOEXCEPT
171 {
return const_iterator(_Base::end(),
this); }
173 #if __cplusplus >= 201103L 175 cbegin()
const noexcept
176 {
return const_iterator(_Base::cbegin(),
this); }
179 cend()
const noexcept
180 {
return const_iterator(_Base::cend(),
this); }
184 rbegin() _GLIBCXX_NOEXCEPT
186 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
187 return reverse_iterator(end());
190 const_reverse_iterator
191 rbegin()
const _GLIBCXX_NOEXCEPT
193 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
194 return const_reverse_iterator(end());
198 rend() _GLIBCXX_NOEXCEPT
200 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
201 return reverse_iterator(begin());
204 const_reverse_iterator
205 rend()
const _GLIBCXX_NOEXCEPT
207 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
208 return const_reverse_iterator(begin());
211 #if __cplusplus >= 201103L 212 const_reverse_iterator
213 crbegin()
const noexcept
215 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
216 return const_reverse_iterator(cend());
219 const_reverse_iterator
220 crend()
const noexcept
222 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
223 return const_reverse_iterator(cbegin());
229 #if __cplusplus >= 201103L 230 noexcept( noexcept(declval<_Base>().swap(__x)) )
238 #if __cplusplus >= 201103L 239 template<
typename... _Args>
241 emplace(_Args&&... __args)
245 __profcxx_map2umap_insert(this->_M_map2umap_info, this->size(), 1);
246 return iterator(_Base::emplace(std::forward<_Args>(__args)...),
this);
249 template<
typename... _Args>
251 emplace_hint(const_iterator __pos, _Args&&... __args)
253 auto size_before = this->size();
255 = _Base::emplace_hint(__pos.base(), std::forward<_Args>(__args)...);
256 __profcxx_map2umap_insert(this->_M_map2umap_info,
257 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1);
258 return iterator(__res,
this);
263 insert(
const value_type& __x)
265 __profcxx_map2umap_insert(this->_M_map2umap_info, this->size(), 1);
266 return iterator(_Base::insert(__x),
this);
269 #if __cplusplus >= 201103L 271 insert(value_type&& __x)
273 __profcxx_map2umap_insert(this->_M_map2umap_info, this->size(), 1);
274 return iterator(_Base::insert(std::move(__x)),
this);
279 insert(const_iterator __pos,
const value_type& __x)
281 size_type size_before = this->size();
282 _Base_iterator __res = _Base::insert(__pos.base(), __x);
284 __profcxx_map2umap_insert(this->_M_map2umap_info,
285 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1);
286 return iterator(__res,
this);
289 #if __cplusplus >= 201103L 291 insert(const_iterator __pos, value_type&& __x)
293 auto size_before = this->size();
294 auto __res = _Base::insert(__pos.base(), std::move(__x));
295 __profcxx_map2umap_insert(this->_M_map2umap_info,
296 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1);
297 return iterator(__res,
this);
301 #if __cplusplus >= 201103L 302 template<
typename _InputIterator,
303 typename = std::_RequireInputIter<_InputIterator>>
305 template<
typename _InputIterator>
308 insert(_InputIterator __first, _InputIterator __last)
310 for (; __first != __last; ++__first)
314 #if __cplusplus >= 201103L 317 { insert(__l.begin(), __l.end()); }
320 #if __cplusplus >= 201103L 322 erase(const_iterator __pos)
324 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
325 return iterator(_Base::erase(__pos.base()),
this);
329 erase(iterator __pos)
331 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
332 _Base::erase(__pos.base());
337 erase(
const key_type& __x)
339 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
340 __profcxx_map2umap_erase(this->_M_map2umap_info, this->size(), 1);
341 return _Base::erase(__x);
344 #if __cplusplus >= 201103L 346 erase(const_iterator __first, const_iterator __last)
348 if (__first != __last)
351 for (; __first != __last;)
352 __ret = erase(__first++);
356 return iterator(_Base::erase(__first.base(), __last.base()),
this);
360 erase(iterator __first, iterator __last)
362 for (; __first != __last;)
368 clear() _GLIBCXX_NOEXCEPT
370 this->_M_profile_destruct();
372 this->_M_profile_construct();
376 count(
const key_type& __x)
const 378 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
379 return _Base::count(__x);
384 find(
const key_type& __x)
386 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
387 return iterator(_Base::find(__x),
this);
393 find(
const key_type& __x)
const 395 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
396 return const_iterator(_Base::find(__x),
this);
400 lower_bound(
const key_type& __x)
402 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
403 return iterator(_Base::lower_bound(__x),
this);
409 lower_bound(
const key_type& __x)
const 411 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
412 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
413 return const_iterator(_Base::lower_bound(__x),
this);
417 upper_bound(
const key_type& __x)
419 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
420 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
421 return iterator(_Base::upper_bound(__x),
this);
427 upper_bound(
const key_type& __x)
const 429 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
430 __profcxx_map2umap_invalidate(this->_M_map2umap_info);
431 return const_iterator(_Base::upper_bound(__x),
this);
435 equal_range(
const key_type& __x)
437 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
439 = _Base::equal_range(__x);
441 iterator(__base_ret.
second,
this));
447 equal_range(
const key_type& __x)
const 449 __profcxx_map2umap_find(this->_M_map2umap_info, this->size());
451 = _Base::equal_range(__x);
453 const_iterator(__base_ret.
second,
this));
457 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
460 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
470 _M_hint_used(_Base_const_iterator __hint, _Base_iterator __res)
472 return (__hint == __res
473 || (__hint == _M_base().end() && ++__res == _M_base().end())
474 || (__hint != _M_base().end() && (++__hint == __res
475 || ++__res == --__hint)));
478 template<
typename _K1,
typename _C1,
typename _A1>
483 template<
typename _K1,
typename _C1,
typename _A1>
485 operator< (const multiset<_K1, _C1, _A1>&,
489 template<
typename _Key,
typename _Compare,
typename _Allocator>
494 __profcxx_map2umap_invalidate(__lhs._M_map2umap_info);
495 __profcxx_map2umap_invalidate(__rhs._M_map2umap_info);
496 return __lhs._M_base() == __rhs._M_base();
499 template<
typename _Key,
typename _Compare,
typename _Allocator>
501 operator<(const multiset<_Key, _Compare, _Allocator>& __lhs,
504 __profcxx_map2umap_invalidate(__lhs._M_map2umap_info);
505 __profcxx_map2umap_invalidate(__rhs._M_map2umap_info);
506 return __lhs._M_base() < __rhs._M_base();
509 template<
typename _Key,
typename _Compare,
typename _Allocator>
513 {
return !(__lhs == __rhs); }
515 template<
typename _Key,
typename _Compare,
typename _Allocator>
517 operator<=(const multiset<_Key, _Compare, _Allocator>& __lhs,
519 {
return !(__rhs < __lhs); }
521 template<
typename _Key,
typename _Compare,
typename _Allocator>
525 {
return !(__lhs < __rhs); }
527 template<
typename _Key,
typename _Compare,
typename _Allocator>
531 {
return __rhs < __lhs; }
533 template<
typename _Key,
typename _Compare,
typename _Allocator>
537 {
return __x.swap(__y); }
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::multiset 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.