Skip to content

Commit 1b016d1

Browse files
authored
[algorithm.syn] Indentation fixes (#5823)
1 parent 88e574e commit 1b016d1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/algorithms.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@
11081108
class Proj1 = identity, class Proj2 = identity,
11091109
@\libconcept{indirect_equivalence_relation}@<projected<iterator_t<R1>, Proj1>,
11101110
projected<iterator_t<R2>, Proj2>>
1111-
Pred = ranges::equal_to>
1111+
Pred = ranges::equal_to>
11121112
constexpr bool is_permutation(R1&& r1, R2&& r2, Pred pred = {},
11131113
Proj1 proj1 = {}, Proj2 proj2 = {});
11141114
}
@@ -1267,15 +1267,15 @@
12671267
constexpr auto fold_left_first(R&& r, F f);
12681268

12691269
template<@\libconcept{bidirectional_iterator}@ I, @\libconcept{sentinel_for}@<I> S, class T,
1270-
@\exposconcept{indirectly-binary-right-foldable}@<T, I> F>
1270+
@\exposconcept{indirectly-binary-right-foldable}@<T, I> F>
12711271
constexpr auto fold_right(I first, S last, T init, F f);
12721272

12731273
template<@\libconcept{bidirectional_range}@ R, class T,
1274-
@\exposconcept{indirectly-binary-right-foldable}@<T, iterator_t<R>> F>
1274+
@\exposconcept{indirectly-binary-right-foldable}@<T, iterator_t<R>> F>
12751275
constexpr auto fold_right(R&& r, T init, F f);
12761276

12771277
template<@\libconcept{bidirectional_iterator}@ I, @\libconcept{sentinel_for}@<I> S,
1278-
@\exposconcept{indirectly-binary-right-foldable}@<iter_value_t<I>, I> F>
1278+
@\exposconcept{indirectly-binary-right-foldable}@<iter_value_t<I>, I> F>
12791279
requires @\libconcept{constructible_from}@<iter_value_t<I>, iter_reference_t<I>>
12801280
constexpr auto fold_right_last(I first, S last, F f);
12811281

@@ -1290,7 +1290,7 @@
12901290
using fold_left_first_with_iter_result = in_value_result<I, T>;
12911291

12921292
template<@\libconcept{input_iterator}@ I, @\libconcept{sentinel_for}@<I> S, class T,
1293-
@\exposconcept{indirectly-binary-left-foldable}@<T, I> F>
1293+
@\exposconcept{indirectly-binary-left-foldable}@<T, I> F>
12941294
constexpr @\seebelow@ fold_left_with_iter(I first, S last, T init, F f);
12951295

12961296
template<@\libconcept{input_range}@ R, class T, @\exposconcept{indirectly-binary-left-foldable}@<T, iterator_t<R>> F>

0 commit comments

Comments
 (0)