tmp/tmp5qf78ptg/{from.md → to.md}
RENAMED
|
@@ -35,10 +35,24 @@ template<forward_range R1, forward_range R2,
|
|
| 35 |
class Pred = ranges::equal_to, class Proj1 = identity, class Proj2 = identity>
|
| 36 |
requires indirectly_comparable<iterator_t<R1>, iterator_t<R2>, Pred, Proj1, Proj2>
|
| 37 |
constexpr borrowed_subrange_t<R1>
|
| 38 |
ranges::find_end(R1&& r1, R2&& r2, Pred pred = {},
|
| 39 |
Proj1 proj1 = {}, Proj2 proj2 = {});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
```
|
| 41 |
|
| 42 |
Let:
|
| 43 |
|
| 44 |
- `pred` be `equal_to{}` for the overloads with no parameter `pred`;
|
|
|
|
| 35 |
class Pred = ranges::equal_to, class Proj1 = identity, class Proj2 = identity>
|
| 36 |
requires indirectly_comparable<iterator_t<R1>, iterator_t<R2>, Pred, Proj1, Proj2>
|
| 37 |
constexpr borrowed_subrange_t<R1>
|
| 38 |
ranges::find_end(R1&& r1, R2&& r2, Pred pred = {},
|
| 39 |
Proj1 proj1 = {}, Proj2 proj2 = {});
|
| 40 |
+
|
| 41 |
+
template<execution-policy Ep, random_access_iterator I1, sized_sentinel_for<I1> S1,
|
| 42 |
+
random_access_iterator I2, sized_sentinel_for<I2> S2,
|
| 43 |
+
class Pred = ranges::equal_to, class Proj1 = identity, class Proj2 = identity>
|
| 44 |
+
requires indirectly_comparable<I1, I2, Pred, Proj1, Proj2>
|
| 45 |
+
subrange<I1>
|
| 46 |
+
ranges::find_end(Ep&& exec, I1 first1, S1 last1, I2 first2, S2 last2, Pred pred = {},
|
| 47 |
+
Proj1 proj1 = {}, Proj2 proj2 = {});
|
| 48 |
+
template<execution-policy Ep, sized-random-access-range R1, sized-random-access-range R2,
|
| 49 |
+
class Pred = ranges::equal_to, class Proj1 = identity, class Proj2 = identity>
|
| 50 |
+
requires indirectly_comparable<iterator_t<R1>, iterator_t<R2>, Pred, Proj1, Proj2>
|
| 51 |
+
borrowed_subrange_t<R1>
|
| 52 |
+
ranges::find_end(Ep&& exec, R1&& r1, R2&& r2, Pred pred = {},
|
| 53 |
+
Proj1 proj1 = {}, Proj2 proj2 = {});
|
| 54 |
```
|
| 55 |
|
| 56 |
Let:
|
| 57 |
|
| 58 |
- `pred` be `equal_to{}` for the overloads with no parameter `pred`;
|