29 #ifndef _GLIBCXX_DEBUG_SET_H
30 #define _GLIBCXX_DEBUG_SET_H 1
37 namespace std _GLIBCXX_VISIBILITY(default)
42 template<
typename _Key,
typename _Compare = std::less<_Key>,
43 typename _Allocator = std::allocator<_Key> >
46 set<_Key, _Compare, _Allocator>, _Allocator,
47 __gnu_debug::_Safe_node_sequence>,
48 public _GLIBCXX_STD_C::set<_Key,_Compare,_Allocator>
50 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator>
_Base;
58 template<
typename _ItT,
typename _SeqT,
typename _CatT>
59 friend class ::__gnu_debug::_Safe_iterator;
63 typedef _Key key_type;
64 typedef _Key value_type;
65 typedef _Compare key_compare;
66 typedef _Compare value_compare;
67 typedef _Allocator allocator_type;
68 typedef typename _Base::reference reference;
69 typedef typename _Base::const_reference const_reference;
76 typedef typename _Base::size_type size_type;
77 typedef typename _Base::difference_type difference_type;
78 typedef typename _Base::pointer pointer;
79 typedef typename _Base::const_pointer const_pointer;
85 #if __cplusplus < 201103L
98 const _Compare& __comp = _Compare(),
99 const allocator_type& __a = allocator_type())
100 :
_Base(__l, __comp, __a) { }
103 set(
const allocator_type& __a)
106 set(
const set& __x,
const allocator_type& __a)
107 :
_Base(__x, __a) { }
109 set(
set&& __x,
const allocator_type& __a)
115 :
_Base(__l, __a) { }
117 template<
typename _InputIterator>
118 set(_InputIterator __first, _InputIterator __last,
119 const allocator_type& __a)
121 __glibcxx_check_valid_constructor_range(__first, __last)),
127 explicit set(
const _Compare& __comp,
128 const _Allocator& __a = _Allocator())
129 :
_Base(__comp, __a) { }
131 template<
typename _InputIterator>
132 set(_InputIterator __first, _InputIterator __last,
133 const _Compare& __comp = _Compare(),
134 const _Allocator& __a = _Allocator())
136 __glibcxx_check_valid_constructor_range(__first, __last)),
143 #if __cplusplus < 201103L
145 operator=(
const set& __x)
147 this->_M_safe() = __x;
153 operator=(
const set&) =
default;
156 operator=(
set&&) =
default;
162 this->_M_invalidate_all();
167 using _Base::get_allocator;
171 begin() _GLIBCXX_NOEXCEPT
172 {
return iterator(_Base::begin(),
this); }
175 begin()
const _GLIBCXX_NOEXCEPT
179 end() _GLIBCXX_NOEXCEPT
180 {
return iterator(_Base::end(),
this); }
183 end()
const _GLIBCXX_NOEXCEPT
187 rbegin() _GLIBCXX_NOEXCEPT
191 rbegin()
const _GLIBCXX_NOEXCEPT
195 rend() _GLIBCXX_NOEXCEPT
199 rend()
const _GLIBCXX_NOEXCEPT
202 #if __cplusplus >= 201103L
204 cbegin()
const noexcept
208 cend()
const noexcept
212 crbegin()
const noexcept
216 crend()
const noexcept
223 using _Base::max_size;
226 #if __cplusplus >= 201103L
227 template<
typename... _Args>
229 emplace(_Args&&... __args)
231 auto __res = _Base::emplace(std::forward<_Args>(__args)...);
232 return { { __res.first,
this }, __res.second };
235 template<
typename... _Args>
242 _Base::emplace_hint(__pos.
base(), std::forward<_Args>(__args)...),
249 insert(
const value_type& __x)
256 #if __cplusplus >= 201103L
258 insert(value_type&& __x)
260 auto __res = _Base::insert(
std::move(__x));
261 return { { __res.first,
this }, __res.second };
269 return iterator(_Base::insert(__position.
base(), __x),
this);
272 #if __cplusplus >= 201103L
277 return { _Base::insert(__position.
base(),
std::move(__x)),
this };
281 template <
typename _InputIterator>
283 insert(_InputIterator __first, _InputIterator __last)
286 __glibcxx_check_valid_range2(__first, __last, __dist);
288 if (__dist.
second >= __gnu_debug::__dp_sign)
289 _Base::insert(__gnu_debug::__unsafe(__first),
290 __gnu_debug::__unsafe(__last));
292 _Base::insert(__first, __last);
295 #if __cplusplus >= 201103L
298 { _Base::insert(__l); }
301 #if __cplusplus > 201402L
302 using node_type =
typename _Base::node_type;
303 using insert_return_type = _Node_insert_return<iterator, node_type>;
310 return _Base::extract(__position.
base());
314 extract(
const key_type& __key)
316 const auto __position = find(__key);
317 if (__position != end())
318 return extract(__position);
323 insert(node_type&& __nh)
325 auto __ret = _Base::insert(
std::move(__nh));
327 return { __pos, __ret.inserted,
std::move(__ret.node) };
334 return { _Base::insert(__hint.
base(),
std::move(__nh)),
this };
340 #if __cplusplus >= 201103L
341 _GLIBCXX_ABI_TAG_CXX11
347 return { _Base::erase(__position.
base()),
this };
355 _Base::erase(__position.
base());
360 erase(
const key_type& __x)
363 if (__victim == _Base::end())
368 _Base::erase(__victim);
373 #if __cplusplus >= 201103L
374 _GLIBCXX_ABI_TAG_CXX11
382 __victim != __last.
base(); ++__victim)
384 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::cend(),
385 _M_message(__gnu_debug::__msg_valid_range)
386 ._M_iterator(__first,
"first")
387 ._M_iterator(__last,
"last"));
391 return { _Base::erase(__first.base(), __last.
base()),
this };
401 __victim != __last.
base(); ++__victim)
403 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
404 _M_message(__gnu_debug::__msg_valid_range)
405 ._M_iterator(__first,
"first")
406 ._M_iterator(__last,
"last"));
409 _Base::erase(__first.base(), __last.
base());
415 _GLIBCXX_NOEXCEPT_IF( noexcept(declval<_Base&>().swap(__x)) )
422 clear() _GLIBCXX_NOEXCEPT
424 this->_M_invalidate_all();
429 using _Base::key_comp;
430 using _Base::value_comp;
434 find(
const key_type& __x)
435 {
return iterator(_Base::find(__x),
this); }
440 find(
const key_type& __x)
const
443 #if __cplusplus > 201103L
444 template<
typename _Kt,
446 typename __has_is_transparent<_Compare, _Kt>::type>
449 {
return { _Base::find(__x),
this }; }
451 template<
typename _Kt,
453 typename __has_is_transparent<_Compare, _Kt>::type>
455 find(
const _Kt& __x)
const
456 {
return { _Base::find(__x),
this }; }
462 lower_bound(
const key_type& __x)
463 {
return iterator(_Base::lower_bound(__x),
this); }
468 lower_bound(
const key_type& __x)
const
471 #if __cplusplus > 201103L
472 template<
typename _Kt,
474 typename __has_is_transparent<_Compare, _Kt>::type>
476 lower_bound(
const _Kt& __x)
477 {
return { _Base::lower_bound(__x),
this }; }
479 template<
typename _Kt,
481 typename __has_is_transparent<_Compare, _Kt>::type>
483 lower_bound(
const _Kt& __x)
const
484 {
return { _Base::lower_bound(__x),
this }; }
488 upper_bound(
const key_type& __x)
489 {
return iterator(_Base::upper_bound(__x),
this); }
494 upper_bound(
const key_type& __x)
const
497 #if __cplusplus > 201103L
498 template<
typename _Kt,
500 typename __has_is_transparent<_Compare, _Kt>::type>
502 upper_bound(
const _Kt& __x)
503 {
return { _Base::upper_bound(__x),
this }; }
505 template<
typename _Kt,
507 typename __has_is_transparent<_Compare, _Kt>::type>
509 upper_bound(
const _Kt& __x)
const
510 {
return { _Base::upper_bound(__x),
this }; }
514 equal_range(
const key_type& __x)
517 _Base::equal_range(__x);
525 equal_range(
const key_type& __x)
const
528 _Base::equal_range(__x);
533 #if __cplusplus > 201103L
534 template<
typename _Kt,
536 typename __has_is_transparent<_Compare, _Kt>::type>
538 equal_range(
const _Kt& __x)
540 auto __res = _Base::equal_range(__x);
541 return { { __res.first,
this }, { __res.second,
this } };
544 template<
typename _Kt,
546 typename __has_is_transparent<_Compare, _Kt>::type>
548 equal_range(
const _Kt& __x)
const
550 auto __res = _Base::equal_range(__x);
551 return { { __res.first,
this }, { __res.second,
this } };
556 _M_base() _GLIBCXX_NOEXCEPT {
return *
this; }
559 _M_base()
const _GLIBCXX_NOEXCEPT {
return *
this; }
562 #if __cpp_deduction_guides >= 201606
564 template<
typename _InputIterator,
567 typename _Allocator =
569 typename = _RequireInputIter<_InputIterator>,
570 typename = _RequireNotAllocator<_Compare>,
571 typename = _RequireAllocator<_Allocator>>
572 set(_InputIterator, _InputIterator,
573 _Compare = _Compare(), _Allocator = _Allocator())
575 _Compare, _Allocator>;
577 template<
typename _Key,
typename _Compare = less<_Key>,
578 typename _Allocator = allocator<_Key>,
579 typename = _RequireNotAllocator<_Compare>,
580 typename = _RequireAllocator<_Allocator>>
582 _Compare = _Compare(), _Allocator = _Allocator())
585 template<
typename _InputIterator,
typename _Allocator,
586 typename = _RequireInputIter<_InputIterator>,
587 typename = _RequireAllocator<_Allocator>>
588 set(_InputIterator, _InputIterator, _Allocator)
593 template<
typename _Key,
typename _Allocator,
594 typename = _RequireAllocator<_Allocator>>
600 template<
typename _Key,
typename _Compare,
typename _Allocator>
604 {
return __lhs._M_base() == __rhs._M_base(); }
606 #if __cpp_lib_three_way_comparison
607 template<
typename _Key,
typename _Compare,
typename _Alloc>
608 inline __detail::__synth3way_t<_Key>
611 {
return __lhs._M_base() <=> __rhs._M_base(); }
613 template<
typename _Key,
typename _Compare,
typename _Allocator>
615 operator!=(
const set<_Key, _Compare, _Allocator>& __lhs,
616 const set<_Key, _Compare, _Allocator>& __rhs)
617 {
return __lhs._M_base() != __rhs._M_base(); }
619 template<
typename _Key,
typename _Compare,
typename _Allocator>
621 operator<(
const set<_Key, _Compare, _Allocator>& __lhs,
622 const set<_Key, _Compare, _Allocator>& __rhs)
623 {
return __lhs._M_base() < __rhs._M_base(); }
625 template<
typename _Key,
typename _Compare,
typename _Allocator>
627 operator<=(
const set<_Key, _Compare, _Allocator>& __lhs,
628 const set<_Key, _Compare, _Allocator>& __rhs)
629 {
return __lhs._M_base() <= __rhs._M_base(); }
631 template<
typename _Key,
typename _Compare,
typename _Allocator>
633 operator>=(
const set<_Key, _Compare, _Allocator>& __lhs,
634 const set<_Key, _Compare, _Allocator>& __rhs)
635 {
return __lhs._M_base() >= __rhs._M_base(); }
637 template<
typename _Key,
typename _Compare,
typename _Allocator>
639 operator>(
const set<_Key, _Compare, _Allocator>& __lhs,
640 const set<_Key, _Compare, _Allocator>& __rhs)
641 {
return __lhs._M_base() > __rhs._M_base(); }
644 template<
typename _Key,
typename _Compare,
typename _Allocator>
646 swap(set<_Key, _Compare, _Allocator>& __x,
647 set<_Key, _Compare, _Allocator>& __y)
648 _GLIBCXX_NOEXCEPT_IF(noexcept(__x.swap(__y)))
649 {
return __x.swap(__y); }
#define __glibcxx_check_insert(_Position)
#define __glibcxx_check_erase_range(_First, _Last)
#define __glibcxx_check_erase(_Position)
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
ISO C++ entities toplevel namespace is std.
constexpr _Iterator __base(_Iterator __it)
The standard allocator, as per C++03 [20.4.1].
One of the comparison functors.
A standard container made up of unique keys, which can be retrieved in logarithmic time.
Struct holding two objects of arbitrary type.
_T1 first
The first member.
_T2 second
The second member.
_Iterator & base() noexcept
Return the underlying iterator.
void _M_invalidate_if(_Predicate __pred)
Safe class dealing with some allocator dependent operations.
Like _Safe_sequence but with a special _M_invalidate_all implementation not invalidating past-the-end...
Class std::set with safety/checking/debug instrumentation.