29 #ifndef _GLIBCXX_PROFILE_MULTISET_H
30 #define _GLIBCXX_PROFILE_MULTISET_H 1
34 namespace std _GLIBCXX_VISIBILITY(default)
39 template<
typename _Key,
typename _Compare = std::less<_Key>,
40 typename _Allocator = std::allocator<_Key> >
42 :
public _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator>
44 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator>
_Base;
48 typedef _Key key_type;
49 typedef _Key value_type;
50 typedef _Compare key_compare;
51 typedef _Compare value_compare;
52 typedef _Allocator allocator_type;
53 typedef typename _Base::reference reference;
54 typedef typename _Base::const_reference const_reference;
56 typedef typename _Base::iterator iterator;
57 typedef typename _Base::const_iterator const_iterator;
58 typedef typename _Base::reverse_iterator reverse_iterator;
59 typedef typename _Base::const_reverse_iterator const_reverse_iterator;
61 typedef typename _Base::size_type size_type;
62 typedef typename _Base::difference_type difference_type;
63 typedef typename _Base::pointer pointer;
64 typedef typename _Base::const_pointer const_pointer;
67 explicit multiset(
const _Compare& __comp = _Compare(),
68 const _Allocator& __a = _Allocator())
69 :
_Base(__comp, __a) { }
71 template<
typename _InputIterator>
72 multiset(_InputIterator __first, _InputIterator __last,
73 const _Compare& __comp = _Compare(),
74 const _Allocator& __a = _Allocator())
75 :
_Base(__first, __last, __comp, __a) { }
83 #ifdef __GXX_EXPERIMENTAL_CXX0X__
86 :
_Base(std::move(__x))
90 const _Compare& __comp = _Compare(),
91 const allocator_type& __a = allocator_type())
92 :
_Base(__l, __comp, __a) { }
100 *
static_cast<_Base*
>(
this) = __x;
104 #ifdef __GXX_EXPERIMENTAL_CXX0X__
124 using _Base::get_allocator;
128 begin() _GLIBCXX_NOEXCEPT
129 {
return iterator(_Base::begin()); }
132 begin()
const _GLIBCXX_NOEXCEPT
133 {
return const_iterator(_Base::begin()); }
136 end() _GLIBCXX_NOEXCEPT
137 {
return iterator(_Base::end()); }
140 end()
const _GLIBCXX_NOEXCEPT
141 {
return const_iterator(_Base::end()); }
144 rbegin() _GLIBCXX_NOEXCEPT
145 {
return reverse_iterator(end()); }
147 const_reverse_iterator
148 rbegin()
const _GLIBCXX_NOEXCEPT
149 {
return const_reverse_iterator(end()); }
152 rend() _GLIBCXX_NOEXCEPT
153 {
return reverse_iterator(begin()); }
155 const_reverse_iterator
156 rend()
const _GLIBCXX_NOEXCEPT
157 {
return const_reverse_iterator(begin()); }
159 #ifdef __GXX_EXPERIMENTAL_CXX0X__
161 cbegin()
const noexcept
162 {
return const_iterator(_Base::begin()); }
165 cend()
const noexcept
166 {
return const_iterator(_Base::end()); }
168 const_reverse_iterator
169 crbegin()
const noexcept
170 {
return const_reverse_iterator(end()); }
172 const_reverse_iterator
173 crend()
const noexcept
174 {
return const_reverse_iterator(begin()); }
180 using _Base::max_size;
184 insert(
const value_type& __x)
185 {
return iterator(_Base::insert(__x)); }
187 #ifdef __GXX_EXPERIMENTAL_CXX0X__
189 insert(value_type&& __x)
190 {
return iterator(_Base::insert(std::move(__x))); }
194 insert(const_iterator __position,
const value_type& __x)
195 {
return iterator(_Base::insert(__position, __x)); }
197 #ifdef __GXX_EXPERIMENTAL_CXX0X__
199 insert(const_iterator __position, value_type&& __x)
200 {
return iterator(_Base::insert(__position, std::move(__x))); }
203 template<
typename _InputIterator>
205 insert(_InputIterator __first, _InputIterator __last)
206 { _Base::insert(__first, __last); }
208 #ifdef __GXX_EXPERIMENTAL_CXX0X__
211 { _Base::insert(__l); }
214 #ifdef __GXX_EXPERIMENTAL_CXX0X__
216 erase(const_iterator __position)
217 {
return iterator(_Base::erase(__position)); }
220 erase(iterator __position)
221 { _Base::erase(__position); }
225 erase(
const key_type& __x)
228 size_type __count = 0;
231 iterator __victim = __victims.
first++;
232 _Base::erase(__victim);
238 #ifdef __GXX_EXPERIMENTAL_CXX0X__
240 erase(const_iterator __first, const_iterator __last)
241 {
return iterator(_Base::erase(__first, __last)); }
244 erase(iterator __first, iterator __last)
245 { _Base::erase(__first, __last); }
250 { _Base::swap(__x); }
253 clear() _GLIBCXX_NOEXCEPT
254 { this->erase(begin(), end()); }
257 using _Base::key_comp;
258 using _Base::value_comp;
262 find(
const key_type& __x)
263 {
return iterator(_Base::find(__x)); }
268 find(
const key_type& __x)
const
269 {
return const_iterator(_Base::find(__x)); }
274 lower_bound(
const key_type& __x)
275 {
return iterator(_Base::lower_bound(__x)); }
280 lower_bound(
const key_type& __x)
const
281 {
return const_iterator(_Base::lower_bound(__x)); }
284 upper_bound(
const key_type& __x)
285 {
return iterator(_Base::upper_bound(__x)); }
290 upper_bound(
const key_type& __x)
const
291 {
return const_iterator(_Base::upper_bound(__x)); }
294 equal_range(
const key_type& __x)
296 typedef typename _Base::iterator _Base_iterator;
298 _Base::equal_range(__x);
306 equal_range(
const key_type& __x)
const
308 typedef typename _Base::const_iterator _Base_iterator;
310 _Base::equal_range(__x);
312 const_iterator(__res.
second));
316 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
319 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
323 template<
typename _Key,
typename _Compare,
typename _Allocator>
327 {
return __lhs._M_base() == __rhs._M_base(); }
329 template<
typename _Key,
typename _Compare,
typename _Allocator>
333 {
return __lhs._M_base() != __rhs._M_base(); }
335 template<
typename _Key,
typename _Compare,
typename _Allocator>
337 operator<(const multiset<_Key, _Compare, _Allocator>& __lhs,
338 const multiset<_Key, _Compare, _Allocator>& __rhs)
339 {
return __lhs._M_base() < __rhs._M_base(); }
341 template<
typename _Key,
typename _Compare,
typename _Allocator>
343 operator<=(const multiset<_Key, _Compare, _Allocator>& __lhs,
344 const multiset<_Key, _Compare, _Allocator>& __rhs)
345 {
return __lhs._M_base() <= __rhs._M_base(); }
347 template<
typename _Key,
typename _Compare,
typename _Allocator>
349 operator>=(
const multiset<_Key, _Compare, _Allocator>& __lhs,
350 const multiset<_Key, _Compare, _Allocator>& __rhs)
351 {
return __lhs._M_base() >= __rhs._M_base(); }
353 template<
typename _Key,
typename _Compare,
typename _Allocator>
355 operator>(
const multiset<_Key, _Compare, _Allocator>& __lhs,
356 const multiset<_Key, _Compare, _Allocator>& __rhs)
357 {
return __lhs._M_base() > __rhs._M_base(); }
359 template<
typename _Key,
typename _Compare,
typename _Allocator>
361 swap(multiset<_Key, _Compare, _Allocator>& __x,
362 multiset<_Key, _Compare, _Allocator>& __y)
363 {
return __x.swap(__y); }
_T1 first
second_type is the second bound type
_T2 second
first is a copy of the first object
Class std::multiset wrapper with performance instrumentation.
size_t count() const _GLIBCXX_NOEXCEPT
Returns the number of bits which are set.
A standard container made up of elements, which can be retrieved in logarithmic time.
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.
is_nothrow_copy_constructible
constexpr size_t size() const _GLIBCXX_NOEXCEPT
Returns the total number of bits.