tmp/tmpjkexx50t/{from.md → to.md}
RENAMED
|
@@ -1,16 +0,0 @@
|
|
| 1 |
-
### All of <a id="alg.all_of">[[alg.all_of]]</a>
|
| 2 |
-
|
| 3 |
-
``` cpp
|
| 4 |
-
template <class InputIterator, class Predicate>
|
| 5 |
-
bool all_of(InputIterator first, InputIterator last, Predicate pred);
|
| 6 |
-
template <class ExecutionPolicy, class ForwardIterator, class Predicate>
|
| 7 |
-
bool all_of(ExecutionPolicy&& exec, ForwardIterator first, ForwardIterator last,
|
| 8 |
-
Predicate pred);
|
| 9 |
-
```
|
| 10 |
-
|
| 11 |
-
*Returns:* `true` if \[`first`, `last`) is empty or if `pred(*i)` is
|
| 12 |
-
`true` for every iterator `i` in the range \[`first`, `last`), and
|
| 13 |
-
`false` otherwise.
|
| 14 |
-
|
| 15 |
-
*Complexity:* At most `last - first` applications of the predicate.
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|