tmp/tmpyq3jpz4s/{from.md → to.md}
RENAMED
|
@@ -11,10 +11,17 @@ template<input_iterator I, sentinel_for<I> S, class Proj = identity,
|
|
| 11 |
indirect_unary_predicate<projected<I, Proj>> Pred>
|
| 12 |
constexpr bool ranges::none_of(I first, S last, Pred pred, Proj proj = {});
|
| 13 |
template<input_range R, class Proj = identity,
|
| 14 |
indirect_unary_predicate<projected<iterator_t<R>, Proj>> Pred>
|
| 15 |
constexpr bool ranges::none_of(R&& r, Pred pred, Proj proj = {});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
```
|
| 17 |
|
| 18 |
Let E be:
|
| 19 |
|
| 20 |
- `pred(*i)` for the overloads in namespace `std`;
|
|
|
|
| 11 |
indirect_unary_predicate<projected<I, Proj>> Pred>
|
| 12 |
constexpr bool ranges::none_of(I first, S last, Pred pred, Proj proj = {});
|
| 13 |
template<input_range R, class Proj = identity,
|
| 14 |
indirect_unary_predicate<projected<iterator_t<R>, Proj>> Pred>
|
| 15 |
constexpr bool ranges::none_of(R&& r, Pred pred, Proj proj = {});
|
| 16 |
+
|
| 17 |
+
template<execution-policy Ep, random_access_iterator I, sized_sentinel_for<I> S,
|
| 18 |
+
class Proj = identity, indirect_unary_predicate<projected<I, Proj>> Pred>
|
| 19 |
+
bool ranges::none_of(Ep&& exec, I first, S last, Pred pred, Proj proj = {});
|
| 20 |
+
template<execution-policy Ep, sized-random-access-range R, class Proj = identity,
|
| 21 |
+
indirect_unary_predicate<projected<iterator_t<R>, Proj>> Pred>
|
| 22 |
+
bool ranges::none_of(Ep&& exec, R&& r, Pred pred, Proj proj = {});
|
| 23 |
```
|
| 24 |
|
| 25 |
Let E be:
|
| 26 |
|
| 27 |
- `pred(*i)` for the overloads in namespace `std`;
|