@@ -1871,7 +1871,7 @@ struct _Static_partitioned_mismatch2 {
18711871template <class _ExPo, class _FwdIt1, class _FwdIt2, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
18721872_NODISCARD pair<_FwdIt1, _FwdIt2> mismatch(
18731873 _ExPo&&, _FwdIt1 _First1, _FwdIt1 _Last1, _FwdIt2 _First2, _Pr _Pred) noexcept /* terminates */ {
1874- // return [_First1, _Last1)/[_First2, ...) mismatch using _Pred
1874+ // return [_First1, _Last1)/[_First2, ...) mismatch
18751875 _REQUIRE_PARALLEL_ITERATOR(_FwdIt1);
18761876 _REQUIRE_PARALLEL_ITERATOR(_FwdIt2);
18771877 _Adl_verify_range(_First1, _Last1);
@@ -1913,7 +1913,7 @@ _NODISCARD pair<_FwdIt1, _FwdIt2> mismatch(
19131913template <class _ExPo, class _FwdIt1, class _FwdIt2, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
19141914_NODISCARD pair<_FwdIt1, _FwdIt2> mismatch(
19151915 _ExPo&&, _FwdIt1 _First1, _FwdIt1 _Last1, _FwdIt2 _First2, _FwdIt2 _Last2, _Pr _Pred) noexcept /* terminates */ {
1916- // return [_First1, _Last1)/[_First2, _Last2) mismatch using _Pred
1916+ // return [_First1, _Last1)/[_First2, _Last2) mismatch
19171917 _REQUIRE_PARALLEL_ITERATOR(_FwdIt1);
19181918 _REQUIRE_PARALLEL_ITERATOR(_FwdIt2);
19191919 _Adl_verify_range(_First1, _Last1);
@@ -1991,7 +1991,7 @@ struct _Static_partitioned_equal2 {
19911991template <class _ExPo, class _FwdIt1, class _FwdIt2, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
19921992_NODISCARD bool equal(_ExPo&&, const _FwdIt1 _First1, const _FwdIt1 _Last1, const _FwdIt2 _First2, _Pr _Pred) noexcept
19931993/* terminates */ {
1994- // compare [_First1, _Last1) to [_First2, ...) using _Pred
1994+ // compare [_First1, _Last1) to [_First2, ...)
19951995 _REQUIRE_PARALLEL_ITERATOR(_FwdIt1);
19961996 _REQUIRE_PARALLEL_ITERATOR(_FwdIt2);
19971997 _Adl_verify_range(_First1, _Last1);
@@ -2024,7 +2024,7 @@ _NODISCARD bool equal(_ExPo&&, const _FwdIt1 _First1, const _FwdIt1 _Last1, cons
20242024template <class _ExPo, class _FwdIt1, class _FwdIt2, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
20252025_NODISCARD bool equal(_ExPo&&, const _FwdIt1 _First1, const _FwdIt1 _Last1, const _FwdIt2 _First2, const _FwdIt2 _Last2,
20262026 _Pr _Pred) noexcept /* terminates */ {
2027- // compare [_First1, _Last1) to [_First2, _Last2) using _Pred
2027+ // compare [_First1, _Last1) to [_First2, _Last2)
20282028 _REQUIRE_PARALLEL_ITERATOR(_FwdIt1);
20292029 _REQUIRE_PARALLEL_ITERATOR(_FwdIt2);
20302030 _Adl_verify_range(_First1, _Last1);
@@ -2740,7 +2740,7 @@ struct _Sort_operation { // context for background threads
27402740
27412741template <class _ExPo, class _RanIt, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
27422742void sort(_ExPo&&, const _RanIt _First, const _RanIt _Last, _Pr _Pred) noexcept /* terminates */ {
2743- // order [_First, _Last), using _Pred
2743+ // order [_First, _Last)
27442744 _Adl_verify_range(_First, _Last);
27452745 const auto _UFirst = _Get_unwrapped(_First);
27462746 const auto _ULast = _Get_unwrapped(_Last);
@@ -2998,7 +2998,7 @@ struct _Static_partitioned_stable_sort3 {
29982998
29992999template <class _ExPo, class _BidIt, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
30003000void stable_sort(_ExPo&&, const _BidIt _First, const _BidIt _Last, _Pr _Pred) noexcept /* terminates */ {
3001- // sort preserving order of equivalents, using _Pred
3001+ // sort preserving order of equivalents
30023002 _Adl_verify_range(_First, _Last);
30033003 const auto _UFirst = _Get_unwrapped(_First);
30043004 const auto _ULast = _Get_unwrapped(_Last);
@@ -3314,7 +3314,7 @@ struct _Static_partitioned_is_heap_until {
33143314
33153315template <class _ExPo, class _RanIt, class _Pr, _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
33163316_NODISCARD _RanIt is_heap_until(_ExPo&&, _RanIt _First, _RanIt _Last, _Pr _Pred) noexcept /* terminates */ {
3317- // find extent of range that is a heap ordered by _Pred
3317+ // find extent of range that is a heap
33183318 _REQUIRE_PARALLEL_ITERATOR(_RanIt);
33193319 _Adl_verify_range(_First, _Last);
33203320 const auto _UFirst = _Get_unwrapped(_First);
@@ -3910,7 +3910,7 @@ template <class _ExPo, class _FwdIt1, class _FwdIt2, class _FwdIt3, class _Pr,
39103910 _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
39113911_FwdIt3 set_intersection(_ExPo&&, _FwdIt1 _First1, _FwdIt1 _Last1, _FwdIt2 _First2, _FwdIt2 _Last2, _FwdIt3 _Dest,
39123912 _Pr _Pred) noexcept /* terminates */ {
3913- // AND sets [_First1, _Last1) and [_First2, _Last2), using _Pred
3913+ // AND sets [_First1, _Last1) and [_First2, _Last2)
39143914 _REQUIRE_PARALLEL_ITERATOR(_FwdIt1);
39153915 _REQUIRE_PARALLEL_ITERATOR(_FwdIt2);
39163916 _REQUIRE_PARALLEL_ITERATOR(_FwdIt3);
@@ -4001,7 +4001,7 @@ template <class _ExPo, class _FwdIt1, class _FwdIt2, class _FwdIt3, class _Pr,
40014001 _Enable_if_execution_policy_t<_ExPo> /* = 0 */>
40024002_FwdIt3 set_difference(_ExPo&&, _FwdIt1 _First1, _FwdIt1 _Last1, _FwdIt2 _First2, _FwdIt2 _Last2, _FwdIt3 _Dest,
40034003 _Pr _Pred) noexcept /* terminates */ {
4004- // take set [_First2, _Last2) from [_First1, _Last1), using _Pred
4004+ // take set [_First2, _Last2) from [_First1, _Last1)
40054005 _REQUIRE_PARALLEL_ITERATOR(_FwdIt1);
40064006 _REQUIRE_PARALLEL_ITERATOR(_FwdIt2);
40074007 _REQUIRE_PARALLEL_ITERATOR(_FwdIt3);
0 commit comments