Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/algorithms.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7005,9 +7005,9 @@
ranges::transform(Ep&& exec, I first1, S last1, O result, OutS result_last,
F op, Proj proj = {});
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R, @\exposconcept{sized-random-access-range}@ OutR,
@\libconcept{copy_constructible}@ F, class Proj = identity>
@\libconcept{copy_constructible}@ F, class Proj = identity>
requires @\libconcept{indirectly_writable}@<iterator_t<OutR>,
indirect_result_t<F&, projected<iterator_t<R>, Proj>>>
indirect_result_t<F&, projected<iterator_t<R>, Proj>>>
ranges::unary_transform_result<borrowed_iterator_t<R>, borrowed_iterator_t<OutR>>
ranges::transform(Ep&& exec, R&& r, OutR&& result_r, F op, Proj proj = {});

Expand All @@ -7032,17 +7032,17 @@
@\libconcept{random_access_iterator}@ O, @\libconcept{sized_sentinel_for}@<O> OutS,
@\libconcept{copy_constructible}@ F, class Proj1 = identity, class Proj2 = identity>
requires @\libconcept{indirectly_writable}@<O, indirect_result_t<F&, projected<I1, Proj1>,
projected<I2, Proj2>>>
projected<I2, Proj2>>>
ranges::binary_transform_result<I1, I2, O>
ranges::transform(Ep&& exec, I1 first1, S1 last1, I2 first2, S2 last2,
O result, OutS result_last,
F binary_op, Proj1 proj1 = {}, Proj2 proj2 = {});
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2,
@\exposconcept{sized-random-access-range}@ OutR, @\libconcept{copy_constructible}@ F,
class Proj1 = identity, class Proj2 = identity>
class Proj1 = identity, class Proj2 = identity>
requires @\libconcept{indirectly_writable}@<iterator_t<OutR>,
indirect_result_t<F&, projected<iterator_t<R1>, Proj1>,
projected<iterator_t<R2>, Proj2>>>
indirect_result_t<F&, projected<iterator_t<R1>, Proj1>,
projected<iterator_t<R2>, Proj2>>>
ranges::binary_transform_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>,
borrowed_iterator_t<OutR>>
ranges::transform(Ep&& exec, R1&& r1, R2&& r2, OutR&& result_r,
Expand Down