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 94 set(
const set&) =
default;
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)
110 noexcept( noexcept(
_Base(std::move(__x._M_base()), __a)) )
111 :
_Safe(std::move(__x._M_safe()), __a),
112 _Base(std::move(__x._M_base()), __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)),
140 set(
const _Base& __x)
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())
574 ->
set<
typename iterator_traits<_InputIterator>::value_type,
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)
589 ->
set<
typename iterator_traits<_InputIterator>::value_type,
590 less<
typename iterator_traits<_InputIterator>::value_type>,
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 template<
typename _Key,
typename _Compare,
typename _Allocator>
610 {
return __lhs._M_base() != __rhs._M_base(); }
612 template<
typename _Key,
typename _Compare,
typename _Allocator>
614 operator<(const set<_Key, _Compare, _Allocator>& __lhs,
615 const set<_Key, _Compare, _Allocator>& __rhs)
616 {
return __lhs._M_base() < __rhs._M_base(); }
618 template<
typename _Key,
typename _Compare,
typename _Allocator>
620 operator<=(const set<_Key, _Compare, _Allocator>& __lhs,
621 const set<_Key, _Compare, _Allocator>& __rhs)
622 {
return __lhs._M_base() <= __rhs._M_base(); }
624 template<
typename _Key,
typename _Compare,
typename _Allocator>
626 operator>=(
const set<_Key, _Compare, _Allocator>& __lhs,
627 const set<_Key, _Compare, _Allocator>& __rhs)
628 {
return __lhs._M_base() >= __rhs._M_base(); }
630 template<
typename _Key,
typename _Compare,
typename _Allocator>
632 operator>(
const set<_Key, _Compare, _Allocator>& __lhs,
633 const set<_Key, _Compare, _Allocator>& __rhs)
634 {
return __lhs._M_base() > __rhs._M_base(); }
636 template<
typename _Key,
typename _Compare,
typename _Allocator>
638 swap(set<_Key, _Compare, _Allocator>& __x,
639 set<_Key, _Compare, _Allocator>& __y)
640 _GLIBCXX_NOEXCEPT_IF(noexcept(__x.swap(__y)))
641 {
return __x.swap(__y); }
_T2 second
first is a copy of the first object
ISO C++ entities toplevel namespace is std.
A standard container made up of unique keys, which can be retrieved in logarithmic time...
Like _Safe_sequence but with a special _M_invalidate_all implementation not invalidating past-the-end...
_T1 first
second_type is the second bound type
The standard allocator, as per [20.4].
#define __glibcxx_check_erase_range(_First, _Last)
void _M_invalidate_if(_Predicate __pred)
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.
#define __glibcxx_check_erase(_Position)
#define __glibcxx_check_insert(_Position)
One of the comparison functors.
Struct holding two objects of arbitrary type.
Class std::set with safety/checking/debug instrumentation.
_Iterator & base() noexcept
Return the underlying iterator.
_Iterator __base(_Iterator __it)
Safe class dealing with some allocator dependent operations.