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
96 if (std::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<_IsMove,
424 is_move_assignable<_Tp>,
425 is_copy_assignable<_Tp>>;
427 static_assert( __assignable::type::value,
"type is not 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
490 if (std::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<_IsMove,
735 is_move_assignable<_Tp>,
736 is_copy_assignable<_Tp>>;
738 static_assert( __assignable::type::value,
"type is not 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
754 if (std::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(_ConvertibleConcept<
856 __glibcxx_requires_can_decrement_range(__first, __last, __result);
858 return std::__copy_move_backward_a<__is_move_iterator<_BI1>::__value>
859 (std::__miter_base(__first), std::__miter_base(__last), __result);
862#if __cplusplus >= 201103L
881 template<
typename _BI1,
typename _BI2>
887 __glibcxx_function_requires(_BidirectionalIteratorConcept<_BI1>)
888 __glibcxx_function_requires(_Mutable_BidirectionalIteratorConcept<_BI2>)
889 __glibcxx_function_requires(_ConvertibleConcept<
892 __glibcxx_requires_can_decrement_range(__first, __last, __result);
894 return std::__copy_move_backward_a<true>(std::__miter_base(__first),
895 std::__miter_base(__last),
899#define _GLIBCXX_MOVE_BACKWARD3(_Tp, _Up, _Vp) std::move_backward(_Tp, _Up, _Vp)
901#define _GLIBCXX_MOVE_BACKWARD3(_Tp, _Up, _Vp) std::copy_backward(_Tp, _Up, _Vp)
904 template<
typename _ForwardIterator,
typename _Tp>
907 __gnu_cxx::__enable_if<!__is_scalar<_Tp>::__value,
void>::__type
908 __fill_a1(_ForwardIterator __first, _ForwardIterator __last,
911 for (; __first != __last; ++__first)
915 template<
typename _ForwardIterator,
typename _Tp>
918 __gnu_cxx::__enable_if<__is_scalar<_Tp>::__value,
void>::__type
919 __fill_a1(_ForwardIterator __first, _ForwardIterator __last,
922 const _Tp __tmp = __value;
923 for (; __first != __last; ++__first)
928 template<
typename _Tp>
931 __gnu_cxx::__enable_if<__is_byte<_Tp>::__value,
void>::__type
932 __fill_a1(_Tp* __first, _Tp* __last,
const _Tp& __c)
934 const _Tp __tmp = __c;
935#if __cpp_lib_is_constant_evaluated
936 if (std::is_constant_evaluated())
938 for (; __first != __last; ++__first)
943 if (
const size_t __len = __last - __first)
944 __builtin_memset(__first,
static_cast<unsigned char>(__tmp), __len);
947 template<
typename _Ite,
typename _Cont,
typename _Tp>
950 __fill_a1(::__gnu_cxx::__normal_iterator<_Ite, _Cont> __first,
951 ::__gnu_cxx::__normal_iterator<_Ite, _Cont> __last,
953 { std::__fill_a1(__first.base(), __last.base(), __value); }
955 template<
typename _Tp,
typename _VTp>
957 __fill_a1(
const _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*>&,
958 const _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Tp&, _Tp*>&,
962 __fill_a1(_GLIBCXX_STD_C::_Bit_iterator, _GLIBCXX_STD_C::_Bit_iterator,
965 template<
typename _FIte,
typename _Tp>
968 __fill_a(_FIte __first, _FIte __last,
const _Tp& __value)
969 { std::__fill_a1(__first, __last, __value); }
971 template<
typename _Ite,
typename _Seq,
typename _Cat,
typename _Tp>
973 __fill_a(const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
974 const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>&,
989 template<
typename _ForwardIterator,
typename _Tp>
992 fill(_ForwardIterator __first, _ForwardIterator __last,
const _Tp& __value)
995 __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
997 __glibcxx_requires_valid_range(__first, __last);
999 std::__fill_a(__first, __last, __value);
1003 inline _GLIBCXX_CONSTEXPR
int
1004 __size_to_integer(
int __n) {
return __n; }
1005 inline _GLIBCXX_CONSTEXPR
unsigned
1006 __size_to_integer(
unsigned __n) {
return __n; }
1007 inline _GLIBCXX_CONSTEXPR
long
1008 __size_to_integer(
long __n) {
return __n; }
1009 inline _GLIBCXX_CONSTEXPR
unsigned long
1010 __size_to_integer(
unsigned long __n) {
return __n; }
1011 inline _GLIBCXX_CONSTEXPR
long long
1012 __size_to_integer(
long long __n) {
return __n; }
1013 inline _GLIBCXX_CONSTEXPR
unsigned long long
1014 __size_to_integer(
unsigned long long __n) {
return __n; }
1016#if defined(__GLIBCXX_TYPE_INT_N_0)
1017 inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_0
1018 __size_to_integer(__GLIBCXX_TYPE_INT_N_0 __n) {
return __n; }
1019 inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_0
1020 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_0 __n) {
return __n; }
1022#if defined(__GLIBCXX_TYPE_INT_N_1)
1023 inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_1
1024 __size_to_integer(__GLIBCXX_TYPE_INT_N_1 __n) {
return __n; }
1025 inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_1
1026 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_1 __n) {
return __n; }
1028#if defined(__GLIBCXX_TYPE_INT_N_2)
1029 inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_2
1030 __size_to_integer(__GLIBCXX_TYPE_INT_N_2 __n) {
return __n; }
1031 inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_2
1032 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_2 __n) {
return __n; }
1034#if defined(__GLIBCXX_TYPE_INT_N_3)
1035 inline _GLIBCXX_CONSTEXPR
unsigned __GLIBCXX_TYPE_INT_N_3
1036 __size_to_integer(__GLIBCXX_TYPE_INT_N_3 __n) {
return __n; }
1037 inline _GLIBCXX_CONSTEXPR __GLIBCXX_TYPE_INT_N_3
1038 __size_to_integer(
unsigned __GLIBCXX_TYPE_INT_N_3 __n) {
return __n; }
1041 inline _GLIBCXX_CONSTEXPR
long long
1042 __size_to_integer(
float __n) {
return (
long long)__n; }
1043 inline _GLIBCXX_CONSTEXPR
long long
1044 __size_to_integer(
double __n) {
return (
long long)__n; }
1045 inline _GLIBCXX_CONSTEXPR
long long
1046 __size_to_integer(
long double __n) {
return (
long long)__n; }
1047#if !defined(__STRICT_ANSI__) && defined(_GLIBCXX_USE_FLOAT128)
1048 inline _GLIBCXX_CONSTEXPR
long long
1049 __size_to_integer(__float128 __n) {
return (
long long)__n; }
1052 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1053 _GLIBCXX20_CONSTEXPR
1055 __gnu_cxx::__enable_if<!__is_scalar<_Tp>::__value, _OutputIterator>::__type
1056 __fill_n_a1(_OutputIterator __first, _Size __n,
const _Tp& __value)
1058 for (; __n > 0; --__n, (void) ++__first)
1063 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1064 _GLIBCXX20_CONSTEXPR
1066 __gnu_cxx::__enable_if<__is_scalar<_Tp>::__value, _OutputIterator>::__type
1067 __fill_n_a1(_OutputIterator __first, _Size __n,
const _Tp& __value)
1069 const _Tp __tmp = __value;
1070 for (; __n > 0; --__n, (void) ++__first)
1075 template<
typename _Ite,
typename _Seq,
typename _Cat,
typename _Size,
1078 __fill_n_a(const ::__gnu_debug::_Safe_iterator<_Ite, _Seq, _Cat>& __first,
1079 _Size __n,
const _Tp& __value,
1082 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1083 _GLIBCXX20_CONSTEXPR
1084 inline _OutputIterator
1085 __fill_n_a(_OutputIterator __first, _Size __n,
const _Tp& __value,
1088#if __cplusplus >= 201103L
1089 static_assert(is_integral<_Size>{},
"fill_n must pass integral size");
1091 return __fill_n_a1(__first, __n, __value);
1094 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1095 _GLIBCXX20_CONSTEXPR
1096 inline _OutputIterator
1097 __fill_n_a(_OutputIterator __first, _Size __n,
const _Tp& __value,
1100#if __cplusplus >= 201103L
1101 static_assert(is_integral<_Size>{},
"fill_n must pass integral size");
1103 return __fill_n_a1(__first, __n, __value);
1106 template<
typename _OutputIterator,
typename _Size,
typename _Tp>
1107 _GLIBCXX20_CONSTEXPR
1108 inline _OutputIterator
1109 __fill_n_a(_OutputIterator __first, _Size __n,
const _Tp& __value,
1112#if __cplusplus >= 201103L
1113 static_assert(is_integral<_Size>{},
"fill_n must pass integral size");
1118 __glibcxx_requires_can_increment(__first, __n);
1120 std::__fill_a(__first, __first + __n, __value);
1121 return __first + __n;
1141 template<
typename _OI,
typename _Size,
typename _Tp>
1142 _GLIBCXX20_CONSTEXPR
1144 fill_n(_OI __first, _Size __n,
const _Tp& __value)
1147 __glibcxx_function_requires(_OutputIteratorConcept<_OI, _Tp>)
1149 return std::__fill_n_a(__first, std::__size_to_integer(__n), __value,
1153 template<
bool _BoolType>
1156 template<
typename _II1,
typename _II2>
1157 _GLIBCXX20_CONSTEXPR
1159 equal(_II1 __first1, _II1 __last1, _II2 __first2)
1161 for (; __first1 != __last1; ++__first1, (void) ++__first2)
1162 if (!(*__first1 == *__first2))
1169 struct __equal<true>
1171 template<
typename _Tp>
1172 _GLIBCXX20_CONSTEXPR
1174 equal(
const _Tp* __first1,
const _Tp* __last1,
const _Tp* __first2)
1176 if (
const size_t __len = (__last1 - __first1))
1177 return !std::__memcmp(__first1, __first2, __len);
1182 template<
typename _Tp,
typename _Ref,
typename _Ptr,
typename _II>
1183 typename __gnu_cxx::__enable_if<
1184 __is_random_access_iter<_II>::__value,
bool>::__type
1185 __equal_aux1(_GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
1186 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>,
1189 template<
typename _Tp1,
typename _Ref1,
typename _Ptr1,
1190 typename _Tp2,
typename _Ref2,
typename _Ptr2>
1192 __equal_aux1(_GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1193 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1194 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1196 template<
typename _II,
typename _Tp,
typename _Ref,
typename _Ptr>
1197 typename __gnu_cxx::__enable_if<
1198 __is_random_access_iter<_II>::__value,
bool>::__type
1199 __equal_aux1(_II, _II,
1200 _GLIBCXX_STD_C::_Deque_iterator<_Tp, _Ref, _Ptr>);
1202 template<
typename _II1,
typename _II2>
1203 _GLIBCXX20_CONSTEXPR
1205 __equal_aux1(_II1 __first1, _II1 __last1, _II2 __first2)
1207 typedef typename iterator_traits<_II1>::value_type _ValueType1;
1208 const bool __simple = ((__is_integer<_ValueType1>::__value
1209 || __is_pointer<_ValueType1>::__value)
1210 && __memcmpable<_II1, _II2>::__value);
1211 return std::__equal<__simple>::equal(__first1, __last1, __first2);
1214 template<
typename _II1,
typename _II2>
1215 _GLIBCXX20_CONSTEXPR
1217 __equal_aux(_II1 __first1, _II1 __last1, _II2 __first2)
1219 return std::__equal_aux1(std::__niter_base(__first1),
1220 std::__niter_base(__last1),
1221 std::__niter_base(__first2));
1224 template<
typename _II1,
typename _Seq1,
typename _Cat1,
typename _II2>
1226 __equal_aux(const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1227 const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1230 template<
typename _II1,
typename _II2,
typename _Seq2,
typename _Cat2>
1232 __equal_aux(_II1, _II1,
1233 const ::__gnu_debug::_Safe_iterator<_II2, _Seq2, _Cat2>&);
1235 template<
typename _II1,
typename _Seq1,
typename _Cat1,
1236 typename _II2,
typename _Seq2,
typename _Cat2>
1238 __equal_aux(const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1239 const ::__gnu_debug::_Safe_iterator<_II1, _Seq1, _Cat1>&,
1240 const ::__gnu_debug::_Safe_iterator<_II2, _Seq2, _Cat2>&);
1242 template<
typename,
typename>
1245 template<
typename _II1,
typename _II2>
1246 _GLIBCXX20_CONSTEXPR
1248 __newlast1(_II1, _II1 __last1, _II2, _II2)
1251 template<
typename _II>
1252 _GLIBCXX20_CONSTEXPR
1254 __cnd2(_II __first, _II __last)
1255 {
return __first != __last; }
1259 struct __lc_rai<random_access_iterator_tag, random_access_iterator_tag>
1261 template<
typename _RAI1,
typename _RAI2>
1262 _GLIBCXX20_CONSTEXPR
1264 __newlast1(_RAI1 __first1, _RAI1 __last1,
1265 _RAI2 __first2, _RAI2 __last2)
1267 const typename iterator_traits<_RAI1>::difference_type
1268 __diff1 = __last1 - __first1;
1269 const typename iterator_traits<_RAI2>::difference_type
1270 __diff2 = __last2 - __first2;
1271 return __diff2 < __diff1 ? __first1 + __diff2 : __last1;
1274 template<
typename _RAI>
1275 static _GLIBCXX20_CONSTEXPR
bool
1280 template<
typename _II1,
typename _II2,
typename _Compare>
1281 _GLIBCXX20_CONSTEXPR
1283 __lexicographical_compare_impl(_II1 __first1, _II1 __last1,
1284 _II2 __first2, _II2 __last2,
1287 typedef typename iterator_traits<_II1>::iterator_category _Category1;
1288 typedef typename iterator_traits<_II2>::iterator_category _Category2;
1289 typedef std::__lc_rai<_Category1, _Category2> __rai_type;
1291 __last1 = __rai_type::__newlast1(__first1, __last1, __first2, __last2);
1292 for (; __first1 != __last1 && __rai_type::__cnd2(__first2, __last2);
1293 ++__first1, (void)++__first2)
1295 if (__comp(__first1, __first2))
1297 if (__comp(__first2, __first1))
1300 return __first1 == __last1 && __first2 != __last2;
1303 template<
bool _BoolType>
1304 struct __lexicographical_compare
1306 template<
typename _II1,
typename _II2>
1307 _GLIBCXX20_CONSTEXPR
1309 __lc(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1311 using __gnu_cxx::__ops::__iter_less_iter;
1312 return std::__lexicographical_compare_impl(__first1, __last1,
1314 __iter_less_iter());
1317 template<
typename _II1,
typename _II2>
1318 _GLIBCXX20_CONSTEXPR
1320 __3way(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1322 while (__first1 != __last1)
1324 if (__first2 == __last2)
1326 if (*__first1 < *__first2)
1328 if (*__first2 < *__first1)
1333 return int(__first2 == __last2) - 1;
1338 struct __lexicographical_compare<true>
1340 template<
typename _Tp,
typename _Up>
1341 _GLIBCXX20_CONSTEXPR
1343 __lc(
const _Tp* __first1,
const _Tp* __last1,
1344 const _Up* __first2,
const _Up* __last2)
1345 {
return __3way(__first1, __last1, __first2, __last2) < 0; }
1347 template<
typename _Tp,
typename _Up>
1348 _GLIBCXX20_CONSTEXPR
1350 __3way(
const _Tp* __first1,
const _Tp* __last1,
1351 const _Up* __first2,
const _Up* __last2)
1353 const size_t __len1 = __last1 - __first1;
1354 const size_t __len2 = __last2 - __first2;
1355 if (
const size_t __len =
std::min(__len1, __len2))
1356 if (
int __result = std::__memcmp(__first1, __first2, __len))
1358 return ptrdiff_t(__len1 - __len2);
1362 template<
typename _II1,
typename _II2>
1363 _GLIBCXX20_CONSTEXPR
1365 __lexicographical_compare_aux1(_II1 __first1, _II1 __last1,
1366 _II2 __first2, _II2 __last2)
1368 typedef typename iterator_traits<_II1>::value_type _ValueType1;
1369 typedef typename iterator_traits<_II2>::value_type _ValueType2;
1370 const bool __simple =
1371 (__is_memcmp_ordered_with<_ValueType1, _ValueType2>::__value
1372 && __is_pointer<_II1>::__value
1373 && __is_pointer<_II2>::__value
1374#if __cplusplus > 201703L && __cpp_lib_concepts
1378 && !is_volatile_v<remove_reference_t<iter_reference_t<_II1>>>
1379 && !is_volatile_v<remove_reference_t<iter_reference_t<_II2>>>
1383 return std::__lexicographical_compare<__simple>::__lc(__first1, __last1,
1387 template<
typename _Tp1,
typename _Ref1,
typename _Ptr1,
1390 __lexicographical_compare_aux1(
1391 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1392 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1395 template<
typename _Tp1,
1396 typename _Tp2,
typename _Ref2,
typename _Ptr2>
1398 __lexicographical_compare_aux1(_Tp1*, _Tp1*,
1399 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>,
1400 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1402 template<
typename _Tp1,
typename _Ref1,
typename _Ptr1,
1403 typename _Tp2,
typename _Ref2,
typename _Ptr2>
1405 __lexicographical_compare_aux1(
1406 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1407 _GLIBCXX_STD_C::_Deque_iterator<_Tp1, _Ref1, _Ptr1>,
1408 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>,
1409 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1411 template<
typename _II1,
typename _II2>
1412 _GLIBCXX20_CONSTEXPR
1414 __lexicographical_compare_aux(_II1 __first1, _II1 __last1,
1415 _II2 __first2, _II2 __last2)
1417 return std::__lexicographical_compare_aux1(std::__niter_base(__first1),
1418 std::__niter_base(__last1),
1419 std::__niter_base(__first2),
1420 std::__niter_base(__last2));
1423 template<
typename _Iter1,
typename _Seq1,
typename _Cat1,
1426 __lexicographical_compare_aux(
1427 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1428 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1431 template<
typename _II1,
1432 typename _Iter2,
typename _Seq2,
typename _Cat2>
1434 __lexicographical_compare_aux(
1436 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&,
1437 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&);
1439 template<
typename _Iter1,
typename _Seq1,
typename _Cat1,
1440 typename _Iter2,
typename _Seq2,
typename _Cat2>
1442 __lexicographical_compare_aux(
1443 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1444 const ::__gnu_debug::_Safe_iterator<_Iter1, _Seq1, _Cat1>&,
1445 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&,
1446 const ::__gnu_debug::_Safe_iterator<_Iter2, _Seq2, _Cat2>&);
1448 template<
typename _ForwardIterator,
typename _Tp,
typename _Compare>
1449 _GLIBCXX20_CONSTEXPR
1451 __lower_bound(_ForwardIterator __first, _ForwardIterator __last,
1452 const _Tp& __val, _Compare __comp)
1454 typedef typename iterator_traits<_ForwardIterator>::difference_type
1461 _DistanceType __half = __len >> 1;
1462 _ForwardIterator __middle = __first;
1464 if (__comp(__middle, __val))
1468 __len = __len - __half - 1;
1487 template<
typename _ForwardIterator,
typename _Tp>
1488 _GLIBCXX20_CONSTEXPR
1489 inline _ForwardIterator
1490 lower_bound(_ForwardIterator __first, _ForwardIterator __last,
1494 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator>)
1495 __glibcxx_function_requires(_LessThanOpConcept<
1497 __glibcxx_requires_partitioned_lower(__first, __last, __val);
1499 return std::__lower_bound(__first, __last, __val,
1500 __gnu_cxx::__ops::__iter_less_val());
1505 inline _GLIBCXX_CONSTEXPR
int
1507 {
return (
int)
sizeof(int) * __CHAR_BIT__ - 1 - __builtin_clz(__n); }
1509 inline _GLIBCXX_CONSTEXPR
unsigned
1511 {
return (
int)
sizeof(int) * __CHAR_BIT__ - 1 - __builtin_clz(__n); }
1513 inline _GLIBCXX_CONSTEXPR
long
1515 {
return (
int)
sizeof(long) * __CHAR_BIT__ - 1 - __builtin_clzl(__n); }
1517 inline _GLIBCXX_CONSTEXPR
unsigned long
1518 __lg(
unsigned long __n)
1519 {
return (
int)
sizeof(long) * __CHAR_BIT__ - 1 - __builtin_clzl(__n); }
1521 inline _GLIBCXX_CONSTEXPR
long long
1523 {
return (
int)
sizeof(
long long) * __CHAR_BIT__ - 1 - __builtin_clzll(__n); }
1525 inline _GLIBCXX_CONSTEXPR
unsigned long long
1526 __lg(
unsigned long long __n)
1527 {
return (
int)
sizeof(
long long) * __CHAR_BIT__ - 1 - __builtin_clzll(__n); }
1529_GLIBCXX_BEGIN_NAMESPACE_ALGO
1543 template<
typename _II1,
typename _II2>
1544 _GLIBCXX20_CONSTEXPR
1546 equal(_II1 __first1, _II1 __last1, _II2 __first2)
1549 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1550 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1551 __glibcxx_function_requires(_EqualOpConcept<
1554 __glibcxx_requires_can_increment_range(__first1, __last1, __first2);
1556 return std::__equal_aux(__first1, __last1, __first2);
1574 template<
typename _IIter1,
typename _IIter2,
typename _BinaryPredicate>
1575 _GLIBCXX20_CONSTEXPR
1577 equal(_IIter1 __first1, _IIter1 __last1,
1578 _IIter2 __first2, _BinaryPredicate __binary_pred)
1581 __glibcxx_function_requires(_InputIteratorConcept<_IIter1>)
1582 __glibcxx_function_requires(_InputIteratorConcept<_IIter2>)
1583 __glibcxx_requires_valid_range(__first1, __last1);
1585 for (; __first1 != __last1; ++__first1, (void)++__first2)
1586 if (!
bool(__binary_pred(*__first1, *__first2)))
1591#if __cplusplus >= 201103L
1593 template<
typename _II1,
typename _II2>
1594 _GLIBCXX20_CONSTEXPR
1596 __equal4(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1598 using _RATag = random_access_iterator_tag;
1599 using _Cat1 =
typename iterator_traits<_II1>::iterator_category;
1600 using _Cat2 =
typename iterator_traits<_II2>::iterator_category;
1601 using _RAIters = __and_<is_same<_Cat1, _RATag>, is_same<_Cat2, _RATag>>;
1608 return _GLIBCXX_STD_A::equal(__first1, __last1, __first2);
1611 for (; __first1 != __last1 && __first2 != __last2;
1612 ++__first1, (void)++__first2)
1613 if (!(*__first1 == *__first2))
1615 return __first1 == __last1 && __first2 == __last2;
1619 template<
typename _II1,
typename _II2,
typename _BinaryPredicate>
1620 _GLIBCXX20_CONSTEXPR
1622 __equal4(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2,
1623 _BinaryPredicate __binary_pred)
1625 using _RATag = random_access_iterator_tag;
1626 using _Cat1 =
typename iterator_traits<_II1>::iterator_category;
1627 using _Cat2 =
typename iterator_traits<_II2>::iterator_category;
1628 using _RAIters = __and_<is_same<_Cat1, _RATag>, is_same<_Cat2, _RATag>>;
1635 return _GLIBCXX_STD_A::equal(__first1, __last1, __first2,
1639 for (; __first1 != __last1 && __first2 != __last2;
1640 ++__first1, (void)++__first2)
1641 if (!
bool(__binary_pred(*__first1, *__first2)))
1643 return __first1 == __last1 && __first2 == __last2;
1647#if __cplusplus > 201103L
1649#define __cpp_lib_robust_nonmodifying_seq_ops 201304
1664 template<
typename _II1,
typename _II2>
1665 _GLIBCXX20_CONSTEXPR
1667 equal(_II1 __first1, _II1 __last1, _II2 __first2, _II2 __last2)
1670 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1671 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1672 __glibcxx_function_requires(_EqualOpConcept<
1675 __glibcxx_requires_valid_range(__first1, __last1);
1676 __glibcxx_requires_valid_range(__first2, __last2);
1678 return _GLIBCXX_STD_A::__equal4(__first1, __last1, __first2, __last2);
1697 template<
typename _IIter1,
typename _IIter2,
typename _BinaryPredicate>
1698 _GLIBCXX20_CONSTEXPR
1700 equal(_IIter1 __first1, _IIter1 __last1,
1701 _IIter2 __first2, _IIter2 __last2, _BinaryPredicate __binary_pred)
1704 __glibcxx_function_requires(_InputIteratorConcept<_IIter1>)
1705 __glibcxx_function_requires(_InputIteratorConcept<_IIter2>)
1706 __glibcxx_requires_valid_range(__first1, __last1);
1707 __glibcxx_requires_valid_range(__first2, __last2);
1709 return _GLIBCXX_STD_A::__equal4(__first1, __last1, __first2, __last2,
1729 template<
typename _II1,
typename _II2>
1730 _GLIBCXX20_CONSTEXPR
1732 lexicographical_compare(_II1 __first1, _II1 __last1,
1733 _II2 __first2, _II2 __last2)
1735#ifdef _GLIBCXX_CONCEPT_CHECKS
1740 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1741 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1742 __glibcxx_function_requires(_LessThanOpConcept<_ValueType1, _ValueType2>)
1743 __glibcxx_function_requires(_LessThanOpConcept<_ValueType2, _ValueType1>)
1744 __glibcxx_requires_valid_range(__first1, __last1);
1745 __glibcxx_requires_valid_range(__first2, __last2);
1747 return std::__lexicographical_compare_aux(__first1, __last1,
1764 template<
typename _II1,
typename _II2,
typename _Compare>
1765 _GLIBCXX20_CONSTEXPR
1767 lexicographical_compare(_II1 __first1, _II1 __last1,
1768 _II2 __first2, _II2 __last2, _Compare __comp)
1771 __glibcxx_function_requires(_InputIteratorConcept<_II1>)
1772 __glibcxx_function_requires(_InputIteratorConcept<_II2>)
1773 __glibcxx_requires_valid_range(__first1, __last1);
1774 __glibcxx_requires_valid_range(__first2, __last2);
1776 return std::__lexicographical_compare_impl
1777 (__first1, __last1, __first2, __last2,
1778 __gnu_cxx::__ops::__iter_comp_iter(__comp));
1781#if __cpp_lib_three_way_comparison
1784 template<
typename _Iter>
1785 concept __is_byte_iter = contiguous_iterator<_Iter>
1786 && __is_memcmp_ordered<iter_value_t<_Iter>>::__value;
1790 template<
typename _Tp>
1792 __min_cmp(_Tp __x, _Tp __y)
1796 decltype(__x <=> __y) _M_cmp;
1798 auto __c = __x <=> __y;
1800 return _Res{__y, __c};
1801 return _Res{__x, __c};
1815 template<
typename _InputIter1,
typename _InputIter2,
typename _Comp>
1817 lexicographical_compare_three_way(_InputIter1 __first1,
1818 _InputIter1 __last1,
1819 _InputIter2 __first2,
1820 _InputIter2 __last2,
1822 ->
decltype(__comp(*__first1, *__first2))
1825 __glibcxx_function_requires(_InputIteratorConcept<_InputIter1>)
1826 __glibcxx_function_requires(_InputIteratorConcept<_InputIter2>)
1827 __glibcxx_requires_valid_range(__first1, __last1);
1828 __glibcxx_requires_valid_range(__first2, __last2);
1830#if __cpp_lib_is_constant_evaluated
1831 using _Cat =
decltype(__comp(*__first1, *__first2));
1832 static_assert(same_as<common_comparison_category_t<_Cat>, _Cat>);
1834 if (!std::is_constant_evaluated())
1835 if constexpr (same_as<_Comp, __detail::_Synth3way>
1836 || same_as<_Comp, compare_three_way>)
1837 if constexpr (__is_byte_iter<_InputIter1>)
1838 if constexpr (__is_byte_iter<_InputIter2>)
1840 const auto [__len, __lencmp] = _GLIBCXX_STD_A::
1841 __min_cmp(__last1 - __first1, __last2 - __first2);
1845 = __builtin_memcmp(&*__first1, &*__first2, __len) <=> 0;
1852 while (__first1 != __last1)
1854 if (__first2 == __last2)
1855 return strong_ordering::greater;
1856 if (
auto __cmp = __comp(*__first1, *__first2); __cmp != 0)
1861 return (__first2 == __last2) <=>
true;
1864 template<
typename _InputIter1,
typename _InputIter2>
1866 lexicographical_compare_three_way(_InputIter1 __first1,
1867 _InputIter1 __last1,
1868 _InputIter2 __first2,
1869 _InputIter2 __last2)
1871 return _GLIBCXX_STD_A::
1872 lexicographical_compare_three_way(__first1, __last1, __first2, __last2,
1873 compare_three_way{});
1877 template<
typename _InputIterator1,
typename _InputIterator2,
1878 typename _BinaryPredicate>
1879 _GLIBCXX20_CONSTEXPR
1880 pair<_InputIterator1, _InputIterator2>
1881 __mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1882 _InputIterator2 __first2, _BinaryPredicate __binary_pred)
1884 while (__first1 != __last1 && __binary_pred(__first1, __first2))
1889 return pair<_InputIterator1, _InputIterator2>(__first1, __first2);
1905 template<
typename _InputIterator1,
typename _InputIterator2>
1906 _GLIBCXX20_CONSTEXPR
1907 inline pair<_InputIterator1, _InputIterator2>
1908 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1909 _InputIterator2 __first2)
1912 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
1913 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
1914 __glibcxx_function_requires(_EqualOpConcept<
1917 __glibcxx_requires_valid_range(__first1, __last1);
1919 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2,
1920 __gnu_cxx::__ops::__iter_equal_to_iter());
1939 template<
typename _InputIterator1,
typename _InputIterator2,
1940 typename _BinaryPredicate>
1941 _GLIBCXX20_CONSTEXPR
1942 inline pair<_InputIterator1, _InputIterator2>
1943 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1944 _InputIterator2 __first2, _BinaryPredicate __binary_pred)
1947 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
1948 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
1949 __glibcxx_requires_valid_range(__first1, __last1);
1951 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2,
1952 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred));
1955#if __cplusplus > 201103L
1957 template<
typename _InputIterator1,
typename _InputIterator2,
1958 typename _BinaryPredicate>
1959 _GLIBCXX20_CONSTEXPR
1960 pair<_InputIterator1, _InputIterator2>
1961 __mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1962 _InputIterator2 __first2, _InputIterator2 __last2,
1963 _BinaryPredicate __binary_pred)
1965 while (__first1 != __last1 && __first2 != __last2
1966 && __binary_pred(__first1, __first2))
1971 return pair<_InputIterator1, _InputIterator2>(__first1, __first2);
1988 template<
typename _InputIterator1,
typename _InputIterator2>
1989 _GLIBCXX20_CONSTEXPR
1990 inline pair<_InputIterator1, _InputIterator2>
1991 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
1992 _InputIterator2 __first2, _InputIterator2 __last2)
1995 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
1996 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
1997 __glibcxx_function_requires(_EqualOpConcept<
2000 __glibcxx_requires_valid_range(__first1, __last1);
2001 __glibcxx_requires_valid_range(__first2, __last2);
2003 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2, __last2,
2004 __gnu_cxx::__ops::__iter_equal_to_iter());
2024 template<
typename _InputIterator1,
typename _InputIterator2,
2025 typename _BinaryPredicate>
2026 _GLIBCXX20_CONSTEXPR
2027 inline pair<_InputIterator1, _InputIterator2>
2028 mismatch(_InputIterator1 __first1, _InputIterator1 __last1,
2029 _InputIterator2 __first2, _InputIterator2 __last2,
2030 _BinaryPredicate __binary_pred)
2033 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
2034 __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
2035 __glibcxx_requires_valid_range(__first1, __last1);
2036 __glibcxx_requires_valid_range(__first2, __last2);
2038 return _GLIBCXX_STD_A::__mismatch(__first1, __last1, __first2, __last2,
2039 __gnu_cxx::__ops::__iter_comp_iter(__binary_pred));
2043_GLIBCXX_END_NAMESPACE_ALGO
2046 template<
typename _InputIterator,
typename _Predicate>
2047 _GLIBCXX20_CONSTEXPR
2048 inline _InputIterator
2052 while (__first != __last && !__pred(__first))
2058 template<
typename _RandomAccessIterator,
typename _Predicate>
2059 _GLIBCXX20_CONSTEXPR
2060 _RandomAccessIterator
2061 __find_if(_RandomAccessIterator __first, _RandomAccessIterator __last,
2065 __trip_count = (__last - __first) >> 2;
2067 for (; __trip_count > 0; --__trip_count)
2069 if (__pred(__first))
2073 if (__pred(__first))
2077 if (__pred(__first))
2081 if (__pred(__first))
2086 switch (__last - __first)
2089 if (__pred(__first))
2094 if (__pred(__first))
2099 if (__pred(__first))
2109 template<
typename _Iterator,
typename _Predicate>
2110 _GLIBCXX20_CONSTEXPR
2112 __find_if(_Iterator __first, _Iterator __last, _Predicate __pred)
2114 return __find_if(__first, __last, __pred,
2118 template<
typename _InputIterator,
typename _Predicate>
2119 _GLIBCXX20_CONSTEXPR
2120 typename iterator_traits<_InputIterator>::difference_type
2121 __count_if(_InputIterator __first, _InputIterator __last, _Predicate __pred)
2123 typename iterator_traits<_InputIterator>::difference_type __n = 0;
2124 for (; __first != __last; ++__first)
2125 if (__pred(__first))
2130#if __cplusplus >= 201103L
2131 template<
typename _ForwardIterator1,
typename _ForwardIterator2,
2132 typename _BinaryPredicate>
2133 _GLIBCXX20_CONSTEXPR
2135 __is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
2136 _ForwardIterator2 __first2, _BinaryPredicate __pred)
2140 for (; __first1 != __last1; ++__first1, (void)++__first2)
2141 if (!__pred(__first1, __first2))
2144 if (__first1 == __last1)
2149 _ForwardIterator2 __last2 = __first2;
2151 for (_ForwardIterator1 __scan = __first1; __scan != __last1; ++__scan)
2154 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan)))
2158 = std::__count_if(__first2, __last2,
2159 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan));
2160 if (0 == __matches ||
2161 std::__count_if(__scan, __last1,
2162 __gnu_cxx::__ops::__iter_comp_iter(__pred, __scan))
2181 template<
typename _ForwardIterator1,
typename _ForwardIterator2>
2182 _GLIBCXX20_CONSTEXPR
2184 is_permutation(_ForwardIterator1 __first1, _ForwardIterator1 __last1,
2185 _ForwardIterator2 __first2)
2188 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator1>)
2189 __glibcxx_function_requires(_ForwardIteratorConcept<_ForwardIterator2>)
2190 __glibcxx_function_requires(_EqualOpConcept<
2193 __glibcxx_requires_valid_range(__first1, __last1);
2195 return std::__is_permutation(__first1, __last1, __first2,
2196 __gnu_cxx::__ops::__iter_equal_to_iter());
2200_GLIBCXX_END_NAMESPACE_VERSION
2206#ifdef _GLIBCXX_PARALLEL
Parallel STL function calls corresponding to the stl_algobase.h header. The functions defined here ma...
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.