Skip to content

Commit c2f05e2

Browse files
authored
[alg.transform] Fix indentation (#8718)
1 parent 7c8a960 commit c2f05e2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/algorithms.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7005,9 +7005,9 @@
70057005
ranges::transform(Ep&& exec, I first1, S last1, O result, OutS result_last,
70067006
F op, Proj proj = {});
70077007
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R, @\exposconcept{sized-random-access-range}@ OutR,
7008-
@\libconcept{copy_constructible}@ F, class Proj = identity>
7008+
@\libconcept{copy_constructible}@ F, class Proj = identity>
70097009
requires @\libconcept{indirectly_writable}@<iterator_t<OutR>,
7010-
indirect_result_t<F&, projected<iterator_t<R>, Proj>>>
7010+
indirect_result_t<F&, projected<iterator_t<R>, Proj>>>
70117011
ranges::unary_transform_result<borrowed_iterator_t<R>, borrowed_iterator_t<OutR>>
70127012
ranges::transform(Ep&& exec, R&& r, OutR&& result_r, F op, Proj proj = {});
70137013

@@ -7032,17 +7032,17 @@
70327032
@\libconcept{random_access_iterator}@ O, @\libconcept{sized_sentinel_for}@<O> OutS,
70337033
@\libconcept{copy_constructible}@ F, class Proj1 = identity, class Proj2 = identity>
70347034
requires @\libconcept{indirectly_writable}@<O, indirect_result_t<F&, projected<I1, Proj1>,
7035-
projected<I2, Proj2>>>
7035+
projected<I2, Proj2>>>
70367036
ranges::binary_transform_result<I1, I2, O>
70377037
ranges::transform(Ep&& exec, I1 first1, S1 last1, I2 first2, S2 last2,
70387038
O result, OutS result_last,
70397039
F binary_op, Proj1 proj1 = {}, Proj2 proj2 = {});
70407040
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
70417041
@\exposconcept{sized-random-access-range}@ OutR, @\libconcept{copy_constructible}@ F,
7042-
class Proj1 = identity, class Proj2 = identity>
7042+
class Proj1 = identity, class Proj2 = identity>
70437043
requires @\libconcept{indirectly_writable}@<iterator_t<OutR>,
7044-
indirect_result_t<F&, projected<iterator_t<R1>, Proj1>,
7045-
projected<iterator_t<R2>, Proj2>>>
7044+
indirect_result_t<F&, projected<iterator_t<R1>, Proj1>,
7045+
projected<iterator_t<R2>, Proj2>>>
70467046
ranges::binary_transform_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
70477047
borrowed_iterator_t<OutR>>
70487048
ranges::transform(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r,

0 commit comments

Comments
 (0)