29 #ifndef _GLIBCXX_PROFILE_SET_H
30 #define _GLIBCXX_PROFILE_SET_H 1
34 namespace std _GLIBCXX_VISIBILITY(default)
39 template<
typename _Key,
typename _Compare = std::less<_Key>,
40 typename _Allocator = std::allocator<_Key> >
44 typedef _GLIBCXX_STD_C::set<_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 set(
const _Compare& __comp = _Compare(),
68 const _Allocator& __a = _Allocator())
69 :
_Base(__comp, __a) { }
71 template<
typename _InputIterator>
72 set(_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) { }
95 ~
set() _GLIBCXX_NOEXCEPT { }
98 operator=(
const set& __x)
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)
186 typedef typename _Base::iterator _Base_iterator;
192 #ifdef __GXX_EXPERIMENTAL_CXX0X__
194 insert(value_type&& __x)
196 typedef typename _Base::iterator _Base_iterator;
198 = _Base::insert(std::move(__x));
205 insert(const_iterator __position,
const value_type& __x)
206 {
return iterator(_Base::insert(__position, __x)); }
208 #ifdef __GXX_EXPERIMENTAL_CXX0X__
210 insert(const_iterator __position, value_type&& __x)
211 {
return iterator(_Base::insert(__position, std::move(__x))); }
214 template <
typename _InputIterator>
216 insert(_InputIterator __first, _InputIterator __last)
217 { _Base::insert(__first, __last); }
219 #ifdef __GXX_EXPERIMENTAL_CXX0X__
222 { _Base::insert(__l); }
225 #ifdef __GXX_EXPERIMENTAL_CXX0X__
227 erase(const_iterator __position)
228 {
return iterator(_Base::erase(__position)); }
231 erase(iterator __position)
232 { _Base::erase(__position); }
236 erase(
const key_type& __x)
238 iterator __victim = find(__x);
239 if (__victim == end())
243 _Base::erase(__victim);
248 #ifdef __GXX_EXPERIMENTAL_CXX0X__
250 erase(const_iterator __first, const_iterator __last)
251 {
return iterator(_Base::erase(__first, __last)); }
254 erase(iterator __first, iterator __last)
255 { _Base::erase(__first, __last); }
260 { _Base::swap(__x); }
263 clear() _GLIBCXX_NOEXCEPT
264 { this->erase(begin(), end()); }
267 using _Base::key_comp;
268 using _Base::value_comp;
272 find(
const key_type& __x)
273 {
return iterator(_Base::find(__x)); }
278 find(
const key_type& __x)
const
279 {
return const_iterator(_Base::find(__x)); }
284 lower_bound(
const key_type& __x)
285 {
return iterator(_Base::lower_bound(__x)); }
290 lower_bound(
const key_type& __x)
const
291 {
return const_iterator(_Base::lower_bound(__x)); }
294 upper_bound(
const key_type& __x)
295 {
return iterator(_Base::upper_bound(__x)); }
300 upper_bound(
const key_type& __x)
const
301 {
return const_iterator(_Base::upper_bound(__x)); }
304 equal_range(
const key_type& __x)
306 typedef typename _Base::iterator _Base_iterator;
308 _Base::equal_range(__x);
316 equal_range(
const key_type& __x)
const
318 typedef typename _Base::const_iterator _Base_iterator;
320 _Base::equal_range(__x);
322 const_iterator(__res.
second));
326 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
329 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
333 template<
typename _Key,
typename _Compare,
typename _Allocator>
337 {
return __lhs._M_base() == __rhs._M_base(); }
339 template<
typename _Key,
typename _Compare,
typename _Allocator>
343 {
return __lhs._M_base() != __rhs._M_base(); }
345 template<
typename _Key,
typename _Compare,
typename _Allocator>
347 operator<(const set<_Key, _Compare, _Allocator>& __lhs,
348 const set<_Key, _Compare, _Allocator>& __rhs)
349 {
return __lhs._M_base() < __rhs._M_base(); }
351 template<
typename _Key,
typename _Compare,
typename _Allocator>
353 operator<=(const set<_Key, _Compare, _Allocator>& __lhs,
354 const set<_Key, _Compare, _Allocator>& __rhs)
355 {
return __lhs._M_base() <= __rhs._M_base(); }
357 template<
typename _Key,
typename _Compare,
typename _Allocator>
359 operator>=(
const set<_Key, _Compare, _Allocator>& __lhs,
360 const set<_Key, _Compare, _Allocator>& __rhs)
361 {
return __lhs._M_base() >= __rhs._M_base(); }
363 template<
typename _Key,
typename _Compare,
typename _Allocator>
365 operator>(
const set<_Key, _Compare, _Allocator>& __lhs,
366 const set<_Key, _Compare, _Allocator>& __rhs)
367 {
return __lhs._M_base() > __rhs._M_base(); }
369 template<
typename _Key,
typename _Compare,
typename _Allocator>
371 swap(set<_Key, _Compare, _Allocator>& __x,
372 set<_Key, _Compare, _Allocator>& __y)
373 {
return __x.swap(__y); }
_T1 first
second_type is the second bound type
_T2 second
first is a copy of the first object
size_t count() const _GLIBCXX_NOEXCEPT
Returns the number of bits which are set.
Struct holding two objects of arbitrary type.
A standard container made up of unique keys, which can be retrieved in logarithmic time...
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.
bitset< _Nb > & set() _GLIBCXX_NOEXCEPT
Sets every bit to true.
is_nothrow_copy_constructible
Class std::set wrapper with performance instrumentation.
constexpr size_t size() const _GLIBCXX_NOEXCEPT
Returns the total number of bits.