Skip to content

Commit 2d72d92

Browse files
committed
[algorithm] Remove unnecessary linebreaks for "requires mergeable"
1 parent 338e6b4 commit 2d72d92

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

source/algorithms.tex

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3536,8 +3536,7 @@
35363536
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
35373537
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
35383538
class Proj1 = identity, class Proj2 = identity>
3539-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
3540-
Comp, Proj1, Proj2>
3539+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
35413540
set_union_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
35423541
borrowed_iterator_t<OutR>>
35433542
set_union(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
@@ -3599,8 +3598,7 @@
35993598
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
36003599
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
36013600
class Proj1 = identity, class Proj2 = identity>
3602-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
3603-
Comp, Proj1, Proj2>
3601+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
36043602
set_intersection_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
36053603
borrowed_iterator_t<OutR>>
36063604
set_intersection(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
@@ -3662,8 +3660,7 @@
36623660
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
36633661
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
36643662
class Proj1 = identity, class Proj2 = identity>
3665-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
3666-
Comp, Proj1, Proj2>
3663+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
36673664
set_difference_result<borrowed_iterator_t<R1>, borrowed_iterator_t<OutR>>
36683665
set_difference(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
36693666
Proj1 proj1 = {}, Proj2 proj2 = {}); // freestanding-deleted
@@ -3726,8 +3723,7 @@
37263723
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
37273724
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
37283725
class Proj1 = identity, class Proj2 = identity>
3729-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
3730-
Comp, Proj1, Proj2>
3726+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
37313727
set_symmetric_difference_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
37323728
borrowed_iterator_t<OutR>>
37333729
set_symmetric_difference(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
@@ -10411,8 +10407,7 @@
1041110407
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
1041210408
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
1041310409
class Proj1 = identity, class Proj2 = identity>
10414-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
10415-
Comp, Proj1, Proj2>
10410+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
1041610411
ranges::set_union_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
1041710412
borrowed_iterator_t<OutR>>
1041810413
ranges::set_union(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
@@ -10542,8 +10537,7 @@
1054210537
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
1054310538
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
1054410539
class Proj1 = identity, class Proj2 = identity>
10545-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
10546-
Comp, Proj1, Proj2>
10540+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
1054710541
ranges::set_intersection_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
1054810542
borrowed_iterator_t<OutR>>
1054910543
ranges::set_intersection(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
@@ -10671,8 +10665,7 @@
1067110665
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
1067210666
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
1067310667
class Proj1 = identity, class Proj2 = identity>
10674-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
10675-
Comp, Proj1, Proj2>
10668+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
1067610669
ranges::set_difference_result<borrowed_iterator_t<R1>, borrowed_iterator_t<OutR>>
1067710670
ranges::set_difference(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r, Comp comp = {},
1067810671
Proj1 proj1 = {}, Proj2 proj2 = {});
@@ -10802,8 +10795,7 @@
1080210795
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
1080310796
@\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less,
1080410797
class Proj1 = identity, class Proj2 = identity>
10805-
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>,
10806-
Comp, Proj1, Proj2>
10798+
requires @\libconcept{mergeable}@<iterator_t<R1>, iterator_t<R2>, iterator_t<OutR>, Comp, Proj1, Proj2>
1080710799
ranges::set_symmetric_difference_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
1080810800
borrowed_iterator_t<OutR>>
1080910801
ranges::set_symmetric_difference(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r,

0 commit comments

Comments
 (0)