56#ifndef _STL_ALGOBASE_H
57#define _STL_ALGOBASE_H 1
72#if __cplusplus >= 201103L
75#if __cplusplus > 201703L
79namespace std _GLIBCXX_VISIBILITY(default)
81_GLIBCXX_BEGIN_NAMESPACE_VERSION
87 template<
typename _Tp,
typename _Up>
90 __memcmp(
const _Tp* __first1,
const _Up* __first2,
size_t __num)
92#if __cplusplus >= 201103L
93 static_assert(
sizeof(_Tp) ==
sizeof(_Up),
"can be compared with memcmp");
95#ifdef __cpp_lib_is_constant_evaluated
98 for(; __num > 0; ++__first1, ++__first2, --__num)
99 if (*__first1 != *__first2)
100 return *__first1 < *__first2 ? -1 : 1;
105 return __builtin_memcmp(__first1, __first2,
sizeof(_Tp) * __num);
108#if __cplusplus < 201103L
112 template<
bool _BoolType>
115 template<
typename _ForwardIterator1,
typename _ForwardIterator2>
117 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
119 typedef typename iterator_traits<_ForwardIterator1>::value_type
121 _ValueType1 __tmp = *__a;
128 struct __iter_swap<true>
130 template<
typename _ForwardIterator1,
typename _ForwardIterator2>
132 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
149 template<
typename _ForwardIterator1,
typename _ForwardIterator2>
152 iter_swap(_ForwardIterator1 __a, _ForwardIterator2 __b)
155 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
157 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
160#if __cplusplus < 201103L
166 __glibcxx_function_requires(_ConvertibleConcept<_ValueType1,
168 __glibcxx_function_requires(_ConvertibleConcept<_ValueType2,
175 std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value
176 && __are_same<_ValueType1&, _ReferenceType1>::__value
177 && __are_same<_ValueType2&, _ReferenceType2>::__value>::
198 template<
typename _ForwardIterator1,
typename _ForwardIterator2>
201 swap_ranges(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
202 _ForwardIterator2 __first2)
205 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
207 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
209 __glibcxx_requires_valid_range(__first1, __last1);
211 for (; __first1 != __last1; ++__first1, (void)++__first2)
212 std::iter_swap(__first1, __first2);
227 template<
typename _Tp>
230 min(
const _Tp& __a,
const _Tp& __b)
233 __glibcxx_function_requires(_LessThanComparableConcept<_Tp>)
251 template<
typename _Tp>
254 max(
const _Tp& __a,
const _Tp& __b)
257 __glibcxx_function_requires(_LessThanComparableConcept<_Tp>)
275 template<
typename _Tp,
typename _Compare>
278 min(
const _Tp& __a,
const _Tp& __b, _Compare __comp)
281 if (__comp(__b, __a))
297 template<
typename _Tp,
typename _Compare>
300 max(
const _Tp& __a,
const _Tp& __b, _Compare __comp)
303 if (__comp(__a, __b))
310 template<
typename _Iterator>
313 __niter_base(_Iterator __it)
317 template<
typename _Ite,
typename _Seq>
319 __niter_base(const ::__gnu_debug::_Safe_iterator<_Ite, _Seq,
325 template<
typename _From,
typename _To>
328 __niter_wrap(_From __from, _To __res)
329 {
return __from + (__res - std::__niter_base(__from)); }
332 template<
typename _Iterator>
335 __niter_wrap(
const _Iterator&, _Iterator __res)
344 template<
bool _IsMove,
bool _IsSimple,
typename _Category>
347 template<
typename _II,
typename _OI>
350 __copy_m(_II __first, _II __last, _OI __result)
352 for (; __first != __last; ++__result, (void)++__first)
353 *__result = *__first;
358#if __cplusplus >= 201103L
359 template<
typename _Category>
360 struct __copy_move<true, false, _Category>
362 template<
typename _II,
typename _OI>
365 __copy_m(_II __first, _II __last, _OI __result)
367 for (; __first != __last; ++__result, (void)++__first)
375 struct __copy_move<false, false, random_access_iterator_tag>
377 template<
typename _II,
typename _OI>
380 __copy_m(_II __first, _II __last, _OI __result)
382 typedef typename iterator_traits<_II>::difference_type _Distance;
383 for(_Distance __n = __last - __first; __n > 0; --__n)
385 *__result = *__first;
393#if __cplusplus >= 201103L
395 struct __copy_move<true, false, random_access_iterator_tag>
397 template<
typename _II,
typename _OI>
400 __copy_m(_II __first, _II __last, _OI __result)
402 typedef typename iterator_traits<_II>::difference_type _Distance;
403 for(_Distance __n = __last - __first; __n > 0; --__n)
414 template<
bool _IsMove>
415 struct __copy_move<_IsMove, true, random_access_iterator_tag>
417 template<
typename _Tp>
420 __copy_m(
const _Tp* __first,
const _Tp* __last, _Tp* __result)
422#if __cplusplus >= 201103L
423 using __assignable = __conditional_t<_IsMove,
424 is_move_assignable<_Tp>,
425 is_copy_assignable<_Tp>>;
427 static_assert( __assignable::value,
"type must be assignable" );
429 const ptrdiff_t _Num = __last - __first;
431 __builtin_memmove(__result, __first,
sizeof(_Tp) * _Num);
432 return __result + _Num;
436_GLIBCXX_BEGIN_NAMESPACE_CONTAINER
438 template<
typename _Tp,
typename _Ref,
typename _Ptr>
439 struct _Deque_iterator;
441 struct _Bit_iterator;
443_GLIBCXX_END_NAMESPACE_CONTAINER
447 template<
typename _CharT>
450 template<
typename _CharT,
typename _Traits>
451 class istreambuf_iterator;
453 template<
typename _CharT,
typename _Traits>
454 class ostreambuf_iterator;
456 template<
bool _IsMove,
typename _CharT>
457 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
458 ostreambuf_iterator<_CharT, char_traits<_CharT> > >::__type
459 __copy_move_a2(_CharT*, _CharT*,
460 ostreambuf_iterator<_CharT, char_traits<_CharT> >);
462 template<
bool _IsMove,
typename _CharT>
463 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
464 ostreambuf_iterator<_CharT, char_traits<_CharT> > >::__type
465 __copy_move_a2(
const _CharT*,
const _CharT*,
466 ostreambuf_iterator<_CharT, char_traits<_CharT> >);
468 template<
bool _IsMove,
typename _CharT>
469 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
471 __copy_move_a2(istreambuf_iterator<_CharT, char_traits<_CharT> >,
472 istreambuf_iterator<_CharT, char_traits<_CharT> >, _CharT*);
474 template<
bool _IsMove,
typename _CharT>
475 typename __gnu_cxx::__enable_if<
476 __is_char<_CharT>::__value,
477 _GLIBCXX_STD_C::_Deque_iterator<_CharT, _CharT&, _CharT*> >::__type
479 istreambuf_iterator<_CharT, char_traits<_CharT> >,
480 istreambuf_iterator<_CharT, char_traits<_CharT> >,
481 _GLIBCXX_STD_C::_Deque_iterator<_CharT, _CharT&, _CharT*>);
483 template<
bool _IsMove,
typename _II,
typename _OI>
486 __copy_move_a2(_II __first, _II __last, _OI __result)
488 typedef typename iterator_traits<_II>::iterator_category _Category;
489#ifdef __cpp_lib_is_constant_evaluated
491 return std::__copy_move<_IsMove, false, _Category>::
492 __copy_m(__first, __last, __result);
494 return std::__copy_move<_IsMove, __memcpyable<_OI, _II>::__value,
495 _Category>::__copy_m(__first, __last, __result);
498 template<
bool _IsMove,
499 typename _Tp,
typename _Ref,
typename _Ptr,
typename _OI>
501 __copy_move_a1(_GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
502 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
505 template<
bool _IsMove,
506 typename _ITp,
typename _IRef,
typename _IPtr,
typename _OTp>
507 _GLIBCXX_STD_C::_Deque_iterator<_OTp, _OTp&, _OTp*>
508 __copy_move_a1(_GLIBCXX_STD_C::_Deque_iterator<_ITp, _IRef, _IPtr>,
509 _GLIBCXX_STD_C::_Deque_iterator<_ITp, _IRef, _IPtr>,
510 _GLIBCXX_STD_C::_Deque_iterator<_OTp, _OTp&, _OTp*>);
512 template<
bool _IsMove,
typename _II,
typename _Tp>
513 typename __gnu_cxx::__enable_if<
514 __is_random_access_iter<_II>::__value,
515 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*> >::__type
516 __copy_move_a1(_II, _II, _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*>);
518 template<
bool _IsMove,
typename _II,
typename _OI>
521 __copy_move_a1(_II __first, _II __last, _OI __result)
522 {
return std::__copy_move_a2<_IsMove>(__first, __last, __result); }
524 template<
bool _IsMove,
typename _II,
typename _OI>
527 __copy_move_a(_II __first, _II __last, _OI __result)
529 return std::__niter_wrap(__result,
530 std::__copy_move_a1<_IsMove>(std::__niter_base(__first),
531 std::__niter_base(__last),
532 std::__niter_base(__result)));
535 template<
bool _IsMove,
536 typename _Ite,
typename _Seq,
typename _Cat,
typename _OI>
538 __copy_move_a(const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
539 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
542 template<
bool _IsMove,
543 typename _II,
typename _Ite,
typename _Seq,
typename _Cat>
545 __copy_move_a(_II, _II,
546 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&);
548 template<
bool _IsMove,
549 typename _IIte,
typename _ISeq,
typename _ICat,
550 typename _OIte,
typename _OSeq,
typename _OCat>
552 __copy_move_a(const ::__gnu_debug::_Safe_iterator<_IIte, _ISeq, _ICat>&,
553 const ::__gnu_debug::_Safe_iterator<_IIte, _ISeq, _ICat>&,
554 const ::__gnu_debug::_Safe_iterator<_OIte, _OSeq, _OCat>&);
556 template<
typename _InputIterator,
typename _Size,
typename _OutputIterator>
559 __copy_n_a(_InputIterator __first, _Size __n, _OutputIterator __result,
566 *__result = *__first;
577 template<
typename _CharT,
typename _Size>
578 typename __gnu_cxx::__enable_if<
579 __is_char<_CharT>::__value, _CharT*>::__type
580 __copy_n_a(istreambuf_iterator<_CharT, char_traits<_CharT> >,
581 _Size, _CharT*,
bool);
583 template<
typename _CharT,
typename _Size>
584 typename __gnu_cxx::__enable_if<
585 __is_char<_CharT>::__value,
586 _GLIBCXX_STD_C::_Deque_iterator<_CharT, _CharT&, _CharT*> >::__type
587 __copy_n_a(istreambuf_iterator<_CharT, char_traits<_CharT> >, _Size,
588 _GLIBCXX_STD_C::_Deque_iterator<_CharT, _CharT&, _CharT*>,
608 template<
typename _II,
typename _OI>
611 copy(_II __first, _II __last, _OI __result)
614 __glibcxx_function_requires(_InputIteratorConcept<_II>)
615 __glibcxx_function_requires(_OutputIteratorConcept<_OI,
617 __glibcxx_requires_can_increment_range(__first, __last, __result);
619 return std::__copy_move_a<__is_move_iterator<_II>::__value>
620 (std::__miter_base(__first), std::__miter_base(__last), __result);
623#if __cplusplus >= 201103L
641 template<
typename _II,
typename _OI>
644 move(_II __first, _II __last, _OI __result)
647 __glibcxx_function_requires(_InputIteratorConcept<_II>)
648 __glibcxx_function_requires(_OutputIteratorConcept<_OI,
650 __glibcxx_requires_can_increment_range(__first, __last, __result);
652 return std::__copy_move_a<true>(std::__miter_base(__first),
653 std::__miter_base(__last), __result);
656#define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
658#define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::copy(_Tp, _Up, _Vp)
661 template<
bool _IsMove,
bool _IsSimple,
typename _Category>
662 struct __copy_move_backward
664 template<
typename _BI1,
typename _BI2>
667 __copy_move_b(_BI1 __first, _BI1 __last, _BI2 __result)
669 while (__first != __last)
670 *--__result = *--__last;
675#if __cplusplus >= 201103L
676 template<
typename _Category>
677 struct __copy_move_backward<true, false, _Category>
679 template<
typename _BI1,
typename _BI2>
682 __copy_move_b(_BI1 __first, _BI1 __last, _BI2 __result)
684 while (__first != __last)
692 struct __copy_move_backward<false, false, random_access_iterator_tag>
694 template<
typename _BI1,
typename _BI2>
697 __copy_move_b(_BI1 __first, _BI1 __last, _BI2 __result)
699 typename iterator_traits<_BI1>::difference_type
700 __n = __last - __first;
701 for (; __n > 0; --__n)
702 *--__result = *--__last;
707#if __cplusplus >= 201103L
709 struct __copy_move_backward<true, false, random_access_iterator_tag>
711 template<
typename _BI1,
typename _BI2>
714 __copy_move_b(_BI1 __first, _BI1 __last, _BI2 __result)
716 typename iterator_traits<_BI1>::difference_type
717 __n = __last - __first;
718 for (; __n > 0; --__n)
725 template<
bool _IsMove>
726 struct __copy_move_backward<_IsMove, true, random_access_iterator_tag>
728 template<
typename _Tp>
731 __copy_move_b(
const _Tp* __first,
const _Tp* __last, _Tp* __result)
733#if __cplusplus >= 201103L
734 using __assignable = __conditional_t<_IsMove,
735 is_move_assignable<_Tp>,
736 is_copy_assignable<_Tp>>;
738 static_assert( __assignable::value,
"type must be assignable" );
740 const ptrdiff_t _Num = __last - __first;
742 __builtin_memmove(__result - _Num, __first,
sizeof(_Tp) * _Num);
743 return __result - _Num;
747 template<
bool _IsMove,
typename _BI1,
typename _BI2>
750 __copy_move_backward_a2(_BI1 __first, _BI1 __last, _BI2 __result)
752 typedef typename iterator_traits<_BI1>::iterator_category _Category;
753#ifdef __cpp_lib_is_constant_evaluated
755 return std::__copy_move_backward<_IsMove, false, _Category>::
756 __copy_move_b(__first, __last, __result);
758 return std::__copy_move_backward<_IsMove,
759 __memcpyable<_BI2, _BI1>::__value,
760 _Category>::__copy_move_b(__first,
765 template<
bool _IsMove,
typename _BI1,
typename _BI2>
768 __copy_move_backward_a1(_BI1 __first, _BI1 __last, _BI2 __result)
769 {
return std::__copy_move_backward_a2<_IsMove>(__first, __last, __result); }
771 template<
bool _IsMove,
772 typename _Tp,
typename _Ref,
typename _Ptr,
typename _OI>
774 __copy_move_backward_a1(_GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
775 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
778 template<
bool _IsMove,
779 typename _ITp,
typename _IRef,
typename _IPtr,
typename _OTp>
780 _GLIBCXX_STD_C::_Deque_iterator<_OTp, _OTp&, _OTp*>
781 __copy_move_backward_a1(
782 _GLIBCXX_STD_C::_Deque_iterator<_ITp, _IRef, _IPtr>,
783 _GLIBCXX_STD_C::_Deque_iterator<_ITp, _IRef, _IPtr>,
784 _GLIBCXX_STD_C::_Deque_iterator<_OTp, _OTp&, _OTp*>);
786 template<
bool _IsMove,
typename _II,
typename _Tp>
787 typename __gnu_cxx::__enable_if<
788 __is_random_access_iter<_II>::__value,
789 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*> >::__type
790 __copy_move_backward_a1(_II, _II,
791 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*>);
793 template<
bool _IsMove,
typename _II,
typename _OI>
796 __copy_move_backward_a(_II __first, _II __last, _OI __result)
798 return std::__niter_wrap(__result,
799 std::__copy_move_backward_a1<_IsMove>
800 (std::__niter_base(__first), std::__niter_base(__last),
801 std::__niter_base(__result)));
804 template<
bool _IsMove,
805 typename _Ite,
typename _Seq,
typename _Cat,
typename _OI>
807 __copy_move_backward_a(
808 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
809 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
812 template<
bool _IsMove,
813 typename _II,
typename _Ite,
typename _Seq,
typename _Cat>
815 __copy_move_backward_a(_II, _II,
816 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&);
818 template<
bool _IsMove,
819 typename _IIte,
typename _ISeq,
typename _ICat,
820 typename _OIte,
typename _OSeq,
typename _OCat>
822 __copy_move_backward_a(
823 const ::__gnu_debug::_Safe_iterator<_IIte, _ISeq, _ICat>&,
824 const ::__gnu_debug::_Safe_iterator<_IIte, _ISeq, _ICat>&,
825 const ::__gnu_debug::_Safe_iterator<_OIte, _OSeq, _OCat>&);
845 template<
typename _BI1,
typename _BI2>
848 copy_backward(_BI1 __first, _BI1 __last, _BI2 __result)
851 __glibcxx_function_requires(_BidirectionalIteratorConcept<_BI1>)
852 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<_BI2>)
853 __glibcxx_function_requires(_OutputIteratorConcept<_BI2,
855 __glibcxx_requires_can_decrement_range(__first, __last, __result);
857 return std::__copy_move_backward_a<__is_move_iterator<_BI1>::__value>
858 (std::__miter_base(__first), std::__miter_base(__last), __result);
861#if __cplusplus >= 201103L
880 template<
typename _BI1,
typename _BI2>
886 __glibcxx_function_requires(_BidirectionalIteratorConcept<_BI1>)
887 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<_BI2>)
888 __glibcxx_function_requires(_OutputIteratorConcept<_BI2,
890 __glibcxx_requires_can_decrement_range(__first, __last, __result);
892 return std::__copy_move_backward_a<true>(std::__miter_base(__first),
893 std::__miter_base(__last),
897#define _GLIBCXX_MOVE_BACKWARD3(_Tp, _Up, _Vp) std::move_backward(_Tp, _Up, _Vp)
899#define _GLIBCXX_MOVE_BACKWARD3(_Tp, _Up, _Vp) std::copy_backward(_Tp, _Up, _Vp)
902 template<
typename _ForwardIterator,
typename _Tp>
905 __gnu_cxx::__enable_if<!__is_scalar<_Tp>::__value,
void>::__type
906 __fill_a1(_ForwardIterator __first, _ForwardIterator __last,
909 for (; __first != __last; ++__first)
913 template<
typename _ForwardIterator,
typename _Tp>
916 __gnu_cxx::__enable_if<__is_scalar<_Tp>::__value,
void>::__type
917 __fill_a1(_ForwardIterator __first, _ForwardIterator __last,
920 const _Tp __tmp = __value;
921 for (; __first != __last; ++__first)
926 template<
typename _Tp>
929 __gnu_cxx::__enable_if<__is_byte<_Tp>::__value,
void>::__type
930 __fill_a1(_Tp* __first, _Tp* __last,
const _Tp& __c)
932 const _Tp __tmp = __c;
933#if __cpp_lib_is_constant_evaluated
936 for (; __first != __last; ++__first)
941 if (
const size_t __len = __last - __first)
942 __builtin_memset(__first,
static_cast<unsigned char>(__tmp), __len);
945 template<
typename _Ite,
typename _Cont,
typename _Tp>
948 __fill_a1(::__gnu_cxx::__normal_iterator<_Ite, _Cont> __first,
949 ::__gnu_cxx::__normal_iterator<_Ite, _Cont> __last,
951 { std::__fill_a1(__first.base(), __last.base(), __value); }
953 template<
typename _Tp,
typename _VTp>
955 __fill_a1(
const _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*>&,
956 const _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*>&,
961 __fill_a1(_GLIBCXX_STD_C::_Bit_iterator, _GLIBCXX_STD_C::_Bit_iterator,
964 template<
typename _FIte,
typename _Tp>
967 __fill_a(_FIte __first, _FIte __last,
const _Tp& __value)
968 { std::__fill_a1(__first, __last, __value); }
970 template<
typename _Ite,
typename _Seq,
typename _Cat,
typename _Tp>
972 __fill_a(const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
973 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
988 template<
typename _ForwardIterator,
typename _Tp>
991 fill(_ForwardIterator __first, _ForwardIterator __last,
const _Tp& __value)
994 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
996 __glibcxx_requires_valid_range(__first, __last);
998 std::__fill_a(__first, __last, __value);
1002 inline _GLIBCXX_CONSTEXPR
int
1003 __size_to_integer(
int __n) {
return __n; }
1004 inline _GLIBCXX_CONSTEXPR
unsigned
1005 __size_to_integer(
unsigned __n) {
return __n; }
1006 inline _GLIBCXX_CONSTEXPR
long
1007 __size_to_integer(
long __n) {
return __n; }
1008 inline _GLIBCXX_CONSTEXPR
unsigned long
1009 __size_to_integer(
unsigned long __n) {
return __n; }
1010 inline _GLIBCXX_CONSTEXPR
long long
1011 __size_to_integer(
long long __n) {
return __n; }
1012 inline _GLIBCXX_CONSTEXPR
unsigned long long
1013 __size_to_integer(
unsigned long long __n) {
return __n; }
1015#if defined(__GLIBCXX_TYPE_INT_N_0)
1016 __extension__
inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_0
1017 __size_to_integer(__GLIBCXX_TYPE_INT_N_0 __n) {
return __n; }
1018 __extension__
inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_0
1019 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_0 __n) {
return __n; }
1021#if defined(__GLIBCXX_TYPE_INT_N_1)
1022 __extension__
inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_1
1023 __size_to_integer(__GLIBCXX_TYPE_INT_N_1 __n) {
return __n; }
1024 __extension__
inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_1
1025 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_1 __n) {
return __n; }
1027#if defined(__GLIBCXX_TYPE_INT_N_2)
1028 __extension__
inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_2
1029 __size_to_integer(__GLIBCXX_TYPE_INT_N_2 __n) {
return __n; }
1030 __extension__
inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_2
1031 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_2 __n) {
return __n; }
1033#if defined(__GLIBCXX_TYPE_INT_N_3)
1034 __extension__
inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_3
1035 __size_to_integer(__GLIBCXX_TYPE_INT_N_3 __n) {
return __n; }
1036 __extension__
inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_3
1037 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_3 __n) {
return __n; }
1040 inline _GLIBCXX_CONSTEXPR
long long
1041 __size_to_integer(
float __n) {
return (
long long)__n; }
1042 inline _GLIBCXX_CONSTEXPR
long long
1043 __size_to_integer(
double __n) {
return (
long long)__n; }
1044 inline _GLIBCXX_CONSTEXPR
long long
1045 __size_to_integer(
long double __n) {
return (
long long)__n; }
1046#if !defined(__STRICT_ANSI__) && defined(_GLIBCXX_USE_FLOAT128)
1047 __extension__
inline _GLIBCXX_CONSTEXPR
long long
1048 __size_to_integer(__float128 __n) {
return (
long long)__n; }
1051 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1052 _GLIBCXX20_CONSTEXPR
1054 __gnu_cxx::__enable_if<!__is_scalar<_Tp>::__value, _OutputIterator>::__type
1055 __fill_n_a1(_OutputIterator __first, _Size __n,
const _Tp& __value)
1057 for (; __n > 0; --__n, (void) ++__first)
1062 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1063 _GLIBCXX20_CONSTEXPR
1065 __gnu_cxx::__enable_if<__is_scalar<_Tp>::__value, _OutputIterator>::__type
1066 __fill_n_a1(_OutputIterator __first, _Size __n,
const _Tp& __value)
1068 const _Tp __tmp = __value;
1069 for (; __n > 0; --__n, (void) ++__first)
1074 template<
typename _Ite,
typename _Seq,
typename _Cat,
typename _Size,
1077 __fill_n_a(const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>& __first,
1078 _Size __n,
const _Tp& __value,
1081 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1082 _GLIBCXX20_CONSTEXPR
1083 inline _OutputIterator
1084 __fill_n_a(_OutputIterator __first, _Size __n,
const _Tp& __value,
1087#if __cplusplus >= 201103L
1088 static_assert(is_integral<_Size>{},
"fill_n must pass integral size");
1090 return __fill_n_a1(__first, __n, __value);
1093 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1094 _GLIBCXX20_CONSTEXPR
1095 inline _OutputIterator
1096 __fill_n_a(_OutputIterator __first, _Size __n,
const _Tp& __value,
1099#if __cplusplus >= 201103L
1100 static_assert(is_integral<_Size>{},
"fill_n must pass integral size");
1102 return __fill_n_a1(__first, __n, __value);
1105 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1106 _GLIBCXX20_CONSTEXPR
1107 inline _OutputIterator
1108 __fill_n_a(_OutputIterator __first, _Size __n,
const _Tp& __value,
1111#if __cplusplus >= 201103L
1112 static_assert(is_integral<_Size>{},
"fill_n must pass integral size");
1117 __glibcxx_requires_can_increment(__first, __n);
1119 std::__fill_a(__first, __first + __n, __value);
1120 return __first + __n;
1140 template<
typename _OI,
typename _Size,
typename _Tp>
1141 _GLIBCXX20_CONSTEXPR
1143 fill_n(_OI __first, _Size __n,
const _Tp& __value)
1146 __glibcxx_function_requires(_OutputIteratorConcept<_OI, const _Tp&>)
1148 return std::__fill_n_a(__first, std::__size_to_integer(__n), __value,
1152 template<
bool _BoolType>
1155 template<
typename _II1,
typename _II2>
1156 _GLIBCXX20_CONSTEXPR
1158 equal(_II1 __first1, _II1 __last1, _II2 __first2)
1160 for (; __first1 != __last1; ++__first1, (void) ++__first2)
1161 if (!(*__first1 == *__first2))
1168 struct __equal<true>
1170 template<
typename _Tp>
1171 _GLIBCXX20_CONSTEXPR
1173 equal(
const _Tp* __first1,
const _Tp* __last1,
const _Tp* __first2)
1175 if (
const size_t __len = (__last1 - __first1))
1176 return !std::__memcmp(__first1, __first2, __len);
1181 template<
typename _Tp,
typename _Ref,
typename _Ptr,
typename _II>
1182 typename __gnu_cxx::__enable_if<
1183 __is_random_access_iter<_II>::__value,
bool>::__type
1184 __equal_aux1(_GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
1185 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
1188 template<
typename _Tp1,
typename _Ref1,
typename _Ptr1,
1189 typename _Tp2,
typename _Ref2,
typename _Ptr2>
1191 __equal_aux1(_GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1192 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1193 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1195 template<
typename _II,
typename _Tp,
typename _Ref,
typename _Ptr>
1196 typename __gnu_cxx::__enable_if<
1197 __is_random_access_iter<_II>::__value,
bool>::__type
1198 __equal_aux1(_II, _II,
1199 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>);
1201 template<
typename _II1,
typename _II2>
1202 _GLIBCXX20_CONSTEXPR
1204 __equal_aux1(_II1 __first1, _II1 __last1, _II2 __first2)
1206 typedef typename iterator_traits<_II1>::value_type _ValueType1;
1207 const bool __simple = ((__is_integer<_ValueType1>::__value
1208 || __is_pointer<_ValueType1>::__value)
1209 && __memcmpable<_II1, _II2>::__value);
1210 return std::__equal<__simple>::equal(__first1, __last1, __first2);
1213 template<
typename _II1,
typename _II2>
1214 _GLIBCXX20_CONSTEXPR
1216 __equal_aux(_II1 __first1, _II1 __last1, _II2 __first2)
1218 return std::__equal_aux1(std::__niter_base(__first1),
1219 std::__niter_base(__last1),
1220 std::__niter_base(__first2));
1223 template<
typename _II1,
typename _Seq1,
typename _Cat1,
typename _II2>
1225 __equal_aux(const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1226 const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1229 template<
typename _II1,
typename _II2,
typename _Seq2,
typename _Cat2>
1231 __equal_aux(_II1, _II1,
1232 const ::__gnu_debug::_Safe_iterator<_II2, _Seq2, _Cat2>&);
1234 template<
typename _II1,
typename _Seq1,
typename _Cat1,
1235 typename _II2,
typename _Seq2,
typename _Cat2>
1237 __equal_aux(const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1238 const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1239 const ::__gnu_debug::_Safe_iterator<_II2, _Seq2, _Cat2>&);
1241 template<
typename,
typename>
1244 template<
typename _II1,
typename _II2>
1245 _GLIBCXX20_CONSTEXPR
1247 __newlast1(_II1, _II1 __last1, _II2, _II2)
1250 template<
typename _II>
1251 _GLIBCXX20_CONSTEXPR
1253 __cnd2(_II __first, _II __last)
1254 {
return __first != __last; }
1258 struct __lc_rai<random_access_iterator_tag, random_access_iterator_tag>
1260 template<
typename _RAI1,
typename _RAI2>
1261 _GLIBCXX20_CONSTEXPR
1263 __newlast1(_RAI1 __first1, _RAI1 __last1,
1264 _RAI2 __first2, _RAI2 __last2)
1266 const typename iterator_traits<_RAI1>::difference_type
1267 __diff1 = __last1 - __first1;
1268 const typename iterator_traits<_RAI2>::difference_type
1269 __diff2 = __last2 - __first2;
1270 return __diff2 < __diff1 ? __first1 + __diff2 : __last1;
1273 template<
typename _RAI>
1274 static _GLIBCXX20_CONSTEXPR
bool
1279 template<
typename _II1,
typename _II2,
typename _Compare>
1280 _GLIBCXX20_CONSTEXPR
1282 __lexicographical_compare_impl(_II1 __first1, _II1 __last1,
1283 _II2 __first2, _II2 __last2,
1286 typedef typename iterator_traits<_II1>::iterator_category _Category1;
1287 typedef typename iterator_traits<_II2>::iterator_category _Category2;
1288 typedef std::__lc_rai<_Category1, _Category2> __rai_type;
1290 __last1 = __rai_type::__newlast1(__first1, __last1, __first2, __last2);
1291 for (; __first1 != __last1 && __rai_type::__cnd2(__first2, __last2);
1292 ++__first1, (void)++__first2)
1294 if (__comp(__first1, __first2))
1296 if (__comp(__first2, __first1))
1299 return __first1 == __last1 && __first2 != __last2;
1302 template<
bool _BoolType>
1303 struct __lexicographical_compare
1305 template<
typename _II1,
typename _II2>
1306 _GLIBCXX20_CONSTEXPR
1308 __lc(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1310 using __gnu_cxx::__ops::__iter_less_iter;
1311 return std::__lexicographical_compare_impl(__first1, __last1,
1313 __iter_less_iter());
1316 template<
typename _II1,
typename _II2>
1317 _GLIBCXX20_CONSTEXPR
1319 __3way(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1321 while (__first1 != __last1)
1323 if (__first2 == __last2)
1325 if (*__first1 < *__first2)
1327 if (*__first2 < *__first1)
1332 return int(__first2 == __last2) - 1;
1337 struct __lexicographical_compare<true>
1339 template<
typename _Tp,
typename _Up>
1340 _GLIBCXX20_CONSTEXPR
1342 __lc(
const _Tp* __first1,
const _Tp* __last1,
1343 const _Up* __first2,
const _Up* __last2)
1344 {
return __3way(__first1, __last1, __first2, __last2) < 0; }
1346 template<
typename _Tp,
typename _Up>
1347 _GLIBCXX20_CONSTEXPR
1349 __3way(
const _Tp* __first1,
const _Tp* __last1,
1350 const _Up* __first2,
const _Up* __last2)
1352 const size_t __len1 = __last1 - __first1;
1353 const size_t __len2 = __last2 - __first2;
1354 if (
const size_t __len =
std::min(__len1, __len2))
1355 if (
int __result = std::__memcmp(__first1, __first2, __len))
1357 return ptrdiff_t(__len1 - __len2);
1361 template<
typename _II1,
typename _II2>
1362 _GLIBCXX20_CONSTEXPR
1364 __lexicographical_compare_aux1(_II1 __first1, _II1 __last1,
1365 _II2 __first2, _II2 __last2)
1367 typedef typename iterator_traits<_II1>::value_type _ValueType1;
1368 typedef typename iterator_traits<_II2>::value_type _ValueType2;
1369 const bool __simple =
1370 (__is_memcmp_ordered_with<_ValueType1, _ValueType2>::__value
1371 && __is_pointer<_II1>::__value
1372 && __is_pointer<_II2>::__value
1373#if __cplusplus > 201703L && __cpp_lib_concepts
1377 && !is_volatile_v<remove_reference_t<iter_reference_t<_II1>>>
1378 && !is_volatile_v<remove_reference_t<iter_reference_t<_II2>>>
1382 return std::__lexicographical_compare<__simple>::__lc(__first1, __last1,
1386 template<
typename _Tp1,
typename _Ref1,
typename _Ptr1,
1389 __lexicographical_compare_aux1(
1390 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1391 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1394 template<
typename _Tp1,
1395 typename _Tp2,
typename _Ref2,
typename _Ptr2>
1397 __lexicographical_compare_aux1(_Tp1*, _Tp1*,
1398 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>,
1399 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1401 template<
typename _Tp1,
typename _Ref1,
typename _Ptr1,
1402 typename _Tp2,
typename _Ref2,
typename _Ptr2>
1404 __lexicographical_compare_aux1(
1405 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1406 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1407 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>,
1408 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1410 template<
typename _II1,
typename _II2>
1411 _GLIBCXX20_CONSTEXPR
1413 __lexicographical_compare_aux(_II1 __first1, _II1 __last1,
1414 _II2 __first2, _II2 __last2)
1416 return std::__lexicographical_compare_aux1(std::__niter_base(__first1),
1417 std::__niter_base(__last1),
1418 std::__niter_base(__first2),
1419 std::__niter_base(__last2));
1422 template<
typename _Iter1,
typename _Seq1,
typename _Cat1,
1425 __lexicographical_compare_aux(
1426 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1427 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1430 template<
typename _II1,
1431 typename _Iter2,
typename _Seq2,
typename _Cat2>
1433 __lexicographical_compare_aux(
1435 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&,
1436 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&);
1438 template<
typename _Iter1,
typename _Seq1,
typename _Cat1,
1439 typename _Iter2,
typename _Seq2,
typename _Cat2>
1441 __lexicographical_compare_aux(
1442 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1443 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1444 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&,
1445 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&);
1447 template<
typename _ForwardIterator,
typename _Tp,
typename _Compare>
1448 _GLIBCXX20_CONSTEXPR
1450 __lower_bound(_ForwardIterator __first, _ForwardIterator __last,
1451 const _Tp& __val, _Compare __comp)
1453 typedef typename iterator_traits<_ForwardIterator>::difference_type
1460 _DistanceType __half = __len >> 1;
1461 _ForwardIterator __middle = __first;
1463 if (__comp(__middle, __val))
1467 __len = __len - __half - 1;
1486 template<
typename _ForwardIterator,
typename _Tp>
1487 _GLIBCXX20_CONSTEXPR
1488 inline _ForwardIterator
1489 lower_bound(_ForwardIterator __first, _ForwardIterator __last,
1493 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
1494 __glibcxx_function_requires(_LessThanOpConcept<
1496 __glibcxx_requires_partitioned_lower(__first, __last, __val);
1498 return std::__lower_bound(__first, __last, __val,
1499 __gnu_cxx::__ops::__iter_less_val());
1504 inline _GLIBCXX_CONSTEXPR
int
1506 {
return (
int)
sizeof(int) * __CHAR_BIT__ - 1 - __builtin_clz(__n); }
1508 inline _GLIBCXX_CONSTEXPR
unsigned
1510 {
return (
int)
sizeof(int) * __CHAR_BIT__ - 1 - __builtin_clz(__n); }
1512 inline _GLIBCXX_CONSTEXPR
long
1514 {
return (
int)
sizeof(long) * __CHAR_BIT__ - 1 - __builtin_clzl(__n); }
1516 inline _GLIBCXX_CONSTEXPR
unsigned long
1517 __lg(
unsigned long __n)
1518 {
return (
int)
sizeof(long) * __CHAR_BIT__ - 1 - __builtin_clzl(__n); }
1520 inline _GLIBCXX_CONSTEXPR
long long
1522 {
return (
int)
sizeof(
long long) * __CHAR_BIT__ - 1 - __builtin_clzll(__n); }
1524 inline _GLIBCXX_CONSTEXPR
unsigned long long
1525 __lg(
unsigned long long __n)
1526 {
return (
int)
sizeof(
long long) * __CHAR_BIT__ - 1 - __builtin_clzll(__n); }
1528_GLIBCXX_BEGIN_NAMESPACE_ALGO
1542 template<
typename _II1,
typename _II2>
1543 _GLIBCXX20_CONSTEXPR
1545 equal(_II1 __first1, _II1 __last1, _II2 __first2)
1548 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1549 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1550 __glibcxx_function_requires(_EqualOpConcept<
1553 __glibcxx_requires_can_increment_range(__first1, __last1, __first2);
1555 return std::__equal_aux(__first1, __last1, __first2);
1573 template<
typename _IIter1,
typename _IIter2,
typename _BinaryPredicate>
1574 _GLIBCXX20_CONSTEXPR
1576 equal(_IIter1 __first1, _IIter1 __last1,
1577 _IIter2 __first2, _BinaryPredicate __binary_pred)
1580 __glibcxx_function_requires(_InputIteratorConcept<_IIter1>)
1581 __glibcxx_function_requires(_InputIteratorConcept<_IIter2>)
1582 __glibcxx_requires_valid_range(__first1, __last1);
1584 for (; __first1 != __last1; ++__first1, (void)++__first2)
1585 if (!
bool(__binary_pred(*__first1, *__first2)))
1590#if __cplusplus >= 201103L
1592 template<
typename _II1,
typename _II2>
1593 _GLIBCXX20_CONSTEXPR
1595 __equal4(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1597 using _RATag = random_access_iterator_tag;
1598 using _Cat1 =
typename iterator_traits<_II1>::iterator_category;
1599 using _Cat2 =
typename iterator_traits<_II2>::iterator_category;
1600 using _RAIters = __and_<is_same<_Cat1, _RATag>, is_same<_Cat2, _RATag>>;
1607 return _GLIBCXX_STD_A::equal(__first1, __last1, __first2);
1610 for (; __first1 != __last1 && __first2 != __last2;
1611 ++__first1, (void)++__first2)
1612 if (!(*__first1 == *__first2))
1614 return __first1 == __last1 && __first2 == __last2;
1618 template<
typename _II1,
typename _II2,
typename _BinaryPredicate>
1619 _GLIBCXX20_CONSTEXPR
1621 __equal4(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2,
1622 _BinaryPredicate __binary_pred)
1624 using _RATag = random_access_iterator_tag;
1625 using _Cat1 =
typename iterator_traits<_II1>::iterator_category;
1626 using _Cat2 =
typename iterator_traits<_II2>::iterator_category;
1627 using _RAIters = __and_<is_same<_Cat1, _RATag>, is_same<_Cat2, _RATag>>;
1634 return _GLIBCXX_STD_A::equal(__first1, __last1, __first2,
1638 for (; __first1 != __last1 && __first2 != __last2;
1639 ++__first1, (void)++__first2)
1640 if (!
bool(__binary_pred(*__first1, *__first2)))
1642 return __first1 == __last1 && __first2 == __last2;
1646#if __cplusplus > 201103L
1648#define __cpp_lib_robust_nonmodifying_seq_ops 201304L
1663 template<
typename _II1,
typename _II2>
1664 _GLIBCXX20_CONSTEXPR
1666 equal(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1669 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1670 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1671 __glibcxx_function_requires(_EqualOpConcept<
1674 __glibcxx_requires_valid_range(__first1, __last1);
1675 __glibcxx_requires_valid_range(__first2, __last2);
1677 return _GLIBCXX_STD_A::__equal4(__first1, __last1, __first2, __last2);
1696 template<
typename _IIter1,
typename _IIter2,
typename _BinaryPredicate>
1697 _GLIBCXX20_CONSTEXPR
1699 equal(_IIter1 __first1, _IIter1 __last1,
1700 _IIter2 __first2, _IIter2 __last2, _BinaryPredicate __binary_pred)
1703 __glibcxx_function_requires(_InputIteratorConcept<_IIter1>)
1704 __glibcxx_function_requires(_InputIteratorConcept<_IIter2>)
1705 __glibcxx_requires_valid_range(__first1, __last1);
1706 __glibcxx_requires_valid_range(__first2, __last2);
1708 return _GLIBCXX_STD_A::__equal4(__first1, __last1, __first2, __last2,
1728 template<
typename _II1,
typename _II2>
1729 _GLIBCXX20_CONSTEXPR
1731 lexicographical_compare(_II1 __first1, _II1 __last1,
1732 _II2 __first2, _II2 __last2)
1734#ifdef _GLIBCXX_CONCEPT_CHECKS
1739 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1740 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1741 __glibcxx_function_requires(_LessThanOpConcept<_ValueType1, _ValueType2>)
1742 __glibcxx_function_requires(_LessThanOpConcept<_ValueType2, _ValueType1>)
1743 __glibcxx_requires_valid_range(__first1, __last1);
1744 __glibcxx_requires_valid_range(__first2, __last2);
1746 return std::__lexicographical_compare_aux(__first1, __last1,
1763 template<
typename _II1,
typename _II2,
typename _Compare>
1764 _GLIBCXX20_CONSTEXPR
1766 lexicographical_compare(_II1 __first1, _II1 __last1,
1767 _II2 __first2, _II2 __last2, _Compare __comp)
1770 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1771 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1772 __glibcxx_requires_valid_range(__first1, __last1);
1773 __glibcxx_requires_valid_range(__first2, __last2);
1775 return std::__lexicographical_compare_impl
1776 (__first1, __last1, __first2, __last2,
1777 __gnu_cxx::__ops::__iter_comp_iter(__comp));
1780#if __cpp_lib_three_way_comparison
1783 template<
typename _Iter>
1784 concept __is_byte_iter = contiguous_iterator<_Iter>
1785 && __is_memcmp_ordered<iter_value_t<_Iter>>::__value;
1789 template<
typename _Tp>
1791 __min_cmp(_Tp __x, _Tp __y)
1795 decltype(__x <=> __y) _M_cmp;
1797 auto __c = __x <=> __y;
1799 return _Res{__y, __c};
1800 return _Res{__x, __c};
1814 template<
typename _InputIter1,
typename _InputIter2,
typename _Comp>
1816 lexicographical_compare_three_way(_InputIter1 __first1,
1817 _InputIter1 __last1,
1818 _InputIter2 __first2,
1819 _InputIter2 __last2,
1821 ->
decltype(__comp(*__first1, *__first2))
1824 __glibcxx_function_requires(_InputIteratorConcept<_InputIter1>)
1825 __glibcxx_function_requires(_InputIteratorConcept<_InputIter2>)
1826 __glibcxx_requires_valid_range(__first1, __last1);
1827 __glibcxx_requires_valid_range(__first2, __last2);
1829 using _Cat =
decltype(__comp(*__first1, *__first2));
1830 static_assert(same_as<common_comparison_category_t<_Cat>, _Cat>);
1832 if (!std::__is_constant_evaluated())
1833 if constexpr (same_as<_Comp, __detail::_Synth3way>
1834 || same_as<_Comp, compare_three_way>)
1835 if constexpr (__is_byte_iter<_InputIter1>)
1836 if constexpr (__is_byte_iter<_InputIter2>)
1838 const auto [__len, __lencmp] = _GLIBCXX_STD_A::
1839 __min_cmp(__last1 - __first1, __last2 - __first2);
1843 = __builtin_memcmp(&*__first1, &*__first2, __len) <=> 0;
1850 while (__first1 != __last1)
1852 if (__first2 == __last2)
1853 return strong_ordering::greater;
1854 if (
auto __cmp = __comp(*__first1, *__first2); __cmp != 0)
1859 return (__first2 == __last2) <=>
true;
1862 template<
typename _InputIter1,
typename _InputIter2>
1864 lexicographical_compare_three_way(_InputIter1 __first1,
1865 _InputIter1 __last1,
1866 _InputIter2 __first2,
1867 _InputIter2 __last2)
1869 return _GLIBCXX_STD_A::
1870 lexicographical_compare_three_way(__first1, __last1, __first2, __last2,
1871 compare_three_way{});
1875 template<
typename _InputIterator1,
typename _InputIterator2,
1876 typename _BinaryPredicate>
1877 _GLIBCXX20_CONSTEXPR
1878 pair<_InputIterator1, _InputIterator2>
1879 __mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1880 _InputIterator2 __first2, _BinaryPredicate __binary_pred)
1882 while (__first1 != __last1 && __binary_pred(__first1, __first2))
1887 return pair<_InputIterator1, _InputIterator2>(__first1, __first2);
1903 template<
typename _InputIterator1,
typename _InputIterator2>
1904 _GLIBCXX20_CONSTEXPR
1905 inline pair<_InputIterator1, _InputIterator2>
1906 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1907 _InputIterator2 __first2)
1910 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
1911 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
1912 __glibcxx_function_requires(_EqualOpConcept<
1915 __glibcxx_requires_valid_range(__first1, __last1);
1917 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2,
1918 __gnu_cxx::__ops::__iter_equal_to_iter());
1937 template<
typename _InputIterator1,
typename _InputIterator2,
1938 typename _BinaryPredicate>
1939 _GLIBCXX20_CONSTEXPR
1940 inline pair<_InputIterator1, _InputIterator2>
1941 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1942 _InputIterator2 __first2, _BinaryPredicate __binary_pred)
1945 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
1946 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
1947 __glibcxx_requires_valid_range(__first1, __last1);
1949 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2,
1950 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred));
1953#if __cplusplus > 201103L
1955 template<
typename _InputIterator1,
typename _InputIterator2,
1956 typename _BinaryPredicate>
1957 _GLIBCXX20_CONSTEXPR
1958 pair<_InputIterator1, _InputIterator2>
1959 __mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1960 _InputIterator2 __first2, _InputIterator2 __last2,
1961 _BinaryPredicate __binary_pred)
1963 while (__first1 != __last1 && __first2 != __last2
1964 && __binary_pred(__first1, __first2))
1969 return pair<_InputIterator1, _InputIterator2>(__first1, __first2);
1986 template<
typename _InputIterator1,
typename _InputIterator2>
1987 _GLIBCXX20_CONSTEXPR
1988 inline pair<_InputIterator1, _InputIterator2>
1989 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1990 _InputIterator2 __first2, _InputIterator2 __last2)
1993 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
1994 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
1995 __glibcxx_function_requires(_EqualOpConcept<
1998 __glibcxx_requires_valid_range(__first1, __last1);
1999 __glibcxx_requires_valid_range(__first2, __last2);
2001 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2, __last2,
2002 __gnu_cxx::__ops::__iter_equal_to_iter());
2022 template<
typename _InputIterator1,
typename _InputIterator2,
2023 typename _BinaryPredicate>
2024 _GLIBCXX20_CONSTEXPR
2025 inline pair<_InputIterator1, _InputIterator2>
2026 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
2027 _InputIterator2 __first2, _InputIterator2 __last2,
2028 _BinaryPredicate __binary_pred)
2031 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
2032 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
2033 __glibcxx_requires_valid_range(__first1, __last1);
2034 __glibcxx_requires_valid_range(__first2, __last2);
2036 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2, __last2,
2037 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred));
2041_GLIBCXX_END_NAMESPACE_ALGO
2044 template<
typename _InputIterator,
typename _Predicate>
2045 _GLIBCXX20_CONSTEXPR
2046 inline _InputIterator
2050 while (__first != __last && !__pred(__first))
2056 template<
typename _RandomAccessIterator,
typename _Predicate>
2057 _GLIBCXX20_CONSTEXPR
2058 _RandomAccessIterator
2059 __find_if(_RandomAccessIterator __first, _RandomAccessIterator __last,
2063 __trip_count = (__last - __first) >> 2;
2065 for (; __trip_count > 0; --__trip_count)
2067 if (__pred(__first))
2071 if (__pred(__first))
2075 if (__pred(__first))
2079 if (__pred(__first))
2084 switch (__last - __first)
2087 if (__pred(__first))
2092 if (__pred(__first))
2097 if (__pred(__first))
2107 template<
typename _Iterator,
typename _Predicate>
2108 _GLIBCXX20_CONSTEXPR
2110 __find_if(_Iterator __first, _Iterator __last, _Predicate __pred)
2112 return __find_if(__first, __last, __pred,
2116 template<
typename _InputIterator,
typename _Predicate>
2117 _GLIBCXX20_CONSTEXPR
2118 typename iterator_traits<_InputIterator>::difference_type
2119 __count_if(_InputIterator __first, _InputIterator __last, _Predicate __pred)
2121 typename iterator_traits<_InputIterator>::difference_type __n = 0;
2122 for (; __first != __last; ++__first)
2123 if (__pred(__first))
2128 template<
typename _ForwardIterator,
typename _Predicate>
2129 _GLIBCXX20_CONSTEXPR
2131 __remove_if(_ForwardIterator __first, _ForwardIterator __last,
2135 if (__first == __last)
2137 _ForwardIterator __result = __first;
2139 for (; __first != __last; ++__first)
2140 if (!__pred(__first))
2142 *__result = _GLIBCXX_MOVE(*__first);
2148#if __cplusplus >= 201103L
2149 template<
typename _ForwardIterator1,
typename _ForwardIterator2,
2150 typename _BinaryPredicate>
2151 _GLIBCXX20_CONSTEXPR
2153 __is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
2154 _ForwardIterator2 __first2, _BinaryPredicate __pred)
2158 for (; __first1 != __last1; ++__first1, (void)++__first2)
2159 if (!__pred(__first1, __first2))
2162 if (__first1 == __last1)
2167 _ForwardIterator2 __last2 = __first2;
2169 for (_ForwardIterator1 __scan = __first1; __scan != __last1; ++__scan)
2172 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan)))
2176 = std::__count_if(__first2, __last2,
2177 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan));
2178 if (0 == __matches ||
2179 std::__count_if(__scan, __last1,
2180 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan))
2199 template<
typename _ForwardIterator1,
typename _ForwardIterator2>
2200 _GLIBCXX20_CONSTEXPR
2202 is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
2203 _ForwardIterator2 __first2)
2206 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
2207 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
2208 __glibcxx_function_requires(_EqualOpConcept<
2211 __glibcxx_requires_valid_range(__first1, __last1);
2213 return std::__is_permutation(__first1, __last1, __first2,
2214 __gnu_cxx::__ops::__iter_equal_to_iter());
2218_GLIBCXX_END_NAMESPACE_VERSION
2224#ifdef _GLIBCXX_PARALLEL
Parallel STL function calls corresponding to the stl_algobase.h header. The functions defined here ma...
constexpr bool is_constant_evaluated() noexcept
Returns true only when called during constant evaluation.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
void swap(any &__x, any &__y) noexcept
Exchange the states of two any objects.
constexpr _BI2 move_backward(_BI1 __first, _BI1 __last, _BI2 __result)
Moves the range [first,last) into result.
constexpr const _Tp & max(const _Tp &, const _Tp &)
This does what you think it does.
constexpr const _Tp & min(const _Tp &, const _Tp &)
This does what you think it does.
constexpr iterator_traits< _Iter >::iterator_category __iterator_category(const _Iter &)
ISO C++ entities toplevel namespace is std.
constexpr iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
constexpr _InputIterator __find_if(_InputIterator __first, _InputIterator __last, _Predicate __pred, input_iterator_tag)
This is an overload used by find algos for the Input Iterator case.
constexpr int __lg(int __n)
This is a helper function for the sort routines and for random.tcc.
constexpr void advance(_InputIterator &__i, _Distance __n)
A generalization of pointer arithmetic.
is_nothrow_copy_constructible
Traits class for iterators.
Marking output iterators.
Random-access iterators support a superset of bidirectional iterator operations.