Skip to content

Commit 9bd12e8

Browse files
jensmaurerJohelEGP
andauthored
Apply suggestions from code review
Co-authored-by: Johel Ernesto Guerrero Peña <[email protected]>
1 parent 178c313 commit 9bd12e8

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
@@ -1227,8 +1227,8 @@
12271227
constexpr auto fold_right(R&& r, T init, F f);
12281228

12291229
template <@\libconcept{bidirectional_iterator}@ I, @\libconcept{sentinel_for}@<I> S,
1230-
indirectly-binary-right-foldable<iter_value_t<I>, I> F>
1231-
requires constructible_from<iter_value_t<I>, iter_reference_t<I>>
1230+
@\exposconcept{indirectly-binary-right-foldable}@<iter_value_t<I>, I> F>
1231+
requires @\libconcept{constructible_from}@<iter_value_t<I>, iter_reference_t<I>>
12321232
constexpr auto fold_right_last(I first, S last, F f);
12331233

12341234
template <@\libconcept{bidirectional_range}@ R,
@@ -4586,9 +4586,9 @@
45864586
\begin{itemdecl}
45874587
template<@\libconcept{input_iterator}@ I, @\libconcept{sentinel_for}@<I> S, class T,
45884588
@\exposconcept{indirectly-binary-left-foldable}@<T, I> F>
4589-
constexpr @\seebelow@ fold_left_with_iter(I first, S last, T init, F f);
4589+
constexpr @\seebelow@ ranges::fold_left_with_iter(I first, S last, T init, F f);
45904590
template<@\libconcept{input_range}@ R, class T, @\exposconcept{indirectly-binary-left-foldable}@<T, iterator_t<R>> F>
4591-
constexpr @\seebelow@ fold_left_with_iter(R&& r, T init, F f);
4591+
constexpr @\seebelow@ ranges::fold_left_with_iter(R&& r, T init, F f);
45924592
\end{itemdecl}
45934593

45944594
\begin{itemdescr}
@@ -4620,10 +4620,10 @@
46204620
template<@\libconcept{input_iterator}@ I, @\libconcept{sentinel_for}@<I> S,
46214621
@\exposconcept{indirectly-binary-left-foldable}@<iter_value_t<I>, I> F>
46224622
requires @\libconcept{constructible_from}@<iter_value_t<I>, iter_reference_t<I>>
4623-
constexpr @\seebelow@ fold_left_first_with_iter(I first, S last, F f)
4623+
constexpr @\seebelow@ ranges::fold_left_first_with_iter(I first, S last, F f);
46244624
template<@\libconcept{input_range}@ R, @\exposconcept{indirectly-binary-left-foldable}@<range_value_t<R>, iterator_t<R>> F>
46254625
requires @\libconcept{constructible_from}@<range_value_t<R>, range_reference_t<R>>
4626-
constexpr @\seebelow@ fold_left_first_with_iter(R&& r, F f);
4626+
constexpr @\seebelow@ ranges::fold_left_first_with_iter(R&& r, F f);
46274627
\end{itemdecl}
46284628

46294629
\begin{itemdescr}

0 commit comments

Comments
 (0)