|
31 | 31 |
|
32 | 32 | namespace std {
|
33 | 33 | // \ref{alg.nonmodifying}, non-modifying sequence operations
|
34 |
| - template <class InputIterator, class Predicate> |
| 34 | + template<class InputIterator, class Predicate> |
35 | 35 | bool all_of(InputIterator first, InputIterator last, Predicate pred);
|
36 |
| - template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 36 | + template<class ExecutionPolicy, class InputIterator, class Predicate> |
37 | 37 | bool all_of(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
|
38 | 38 | InputIterator first, InputIterator last, Predicate pred);
|
39 |
| - template <class InputIterator, class Predicate> |
| 39 | + template<class InputIterator, class Predicate> |
40 | 40 | bool any_of(InputIterator first, InputIterator last, Predicate pred);
|
41 |
| - template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 41 | + template<class ExecutionPolicy, class InputIterator, class Predicate> |
42 | 42 | bool any_of(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
|
43 | 43 | InputIterator first, InputIterator last, Predicate pred);
|
44 |
| - template <class InputIterator, class Predicate> |
| 44 | + template<class InputIterator, class Predicate> |
45 | 45 | bool none_of(InputIterator first, InputIterator last, Predicate pred);
|
46 |
| - template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 46 | + template<class ExecutionPolicy, class InputIterator, class Predicate> |
47 | 47 | bool none_of(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
|
48 | 48 | InputIterator first, InputIterator last, Predicate pred);
|
49 | 49 |
|
|
285 | 285 | Size count, const T& value,
|
286 | 286 | BinaryPredicate pred);
|
287 | 287 |
|
288 |
| - template <class ForwardIterator, class Searcher> |
| 288 | + template<class ForwardIterator, class Searcher> |
289 | 289 | ForwardIterator search(ForwardIterator first, ForwardIterator last,
|
290 | 290 | const Searcher& searcher);
|
291 | 291 |
|
|
531 | 531 | UniformRandomBitGenerator&& g);
|
532 | 532 |
|
533 | 533 | // \ref{alg.partitions}, partitions
|
534 |
| - template <class InputIterator, class Predicate> |
| 534 | + template<class InputIterator, class Predicate> |
535 | 535 | bool is_partitioned(InputIterator first, InputIterator last, Predicate pred);
|
536 |
| - template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 536 | + template<class ExecutionPolicy, class InputIterator, class Predicate> |
537 | 537 | bool is_partitioned(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
|
538 | 538 | InputIterator first, InputIterator last, Predicate pred);
|
539 | 539 |
|
|
555 | 555 | BidirectionalIterator first,
|
556 | 556 | BidirectionalIterator last,
|
557 | 557 | Predicate pred);
|
558 |
| - template <class InputIterator, class OutputIterator1, |
| 558 | + template<class InputIterator, class OutputIterator1, |
559 | 559 | class OutputIterator2, class Predicate>
|
560 | 560 | pair<OutputIterator1, OutputIterator2>
|
561 | 561 | partition_copy(InputIterator first, InputIterator last,
|
562 | 562 | OutputIterator1 out_true, OutputIterator2 out_false,
|
563 | 563 | Predicate pred);
|
564 |
| - template <class ExecutionPolicy, class InputIterator, class OutputIterator1, |
| 564 | + template<class ExecutionPolicy, class InputIterator, class OutputIterator1, |
565 | 565 | class OutputIterator2, class Predicate>
|
566 | 566 | pair<OutputIterator1, OutputIterator2>
|
567 | 567 | partition_copy(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
|
|
1439 | 1439 |
|
1440 | 1440 | \indexlibrary{\idxcode{all_of}}%
|
1441 | 1441 | \begin{itemdecl}
|
1442 |
| -template <class InputIterator, class Predicate> |
| 1442 | +template<class InputIterator, class Predicate> |
1443 | 1443 | bool all_of(InputIterator first, InputIterator last, Predicate pred);
|
1444 |
| -template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 1444 | +template<class ExecutionPolicy, class InputIterator, class Predicate> |
1445 | 1445 | bool all_of(ExecutionPolicy&& exec, InputIterator first, InputIterator last,
|
1446 | 1446 | Predicate pred);
|
1447 | 1447 | \end{itemdecl}
|
|
1460 | 1460 |
|
1461 | 1461 | \indexlibrary{\idxcode{any_of}}%
|
1462 | 1462 | \begin{itemdecl}
|
1463 |
| -template <class InputIterator, class Predicate> |
| 1463 | +template<class InputIterator, class Predicate> |
1464 | 1464 | bool any_of(InputIterator first, InputIterator last, Predicate pred);
|
1465 |
| -template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 1465 | +template<class ExecutionPolicy, class InputIterator, class Predicate> |
1466 | 1466 | bool any_of(ExecutionPolicy&& exec, InputIterator first, InputIterator last,
|
1467 | 1467 | Predicate pred);
|
1468 | 1468 | \end{itemdecl}
|
|
1481 | 1481 |
|
1482 | 1482 | \indexlibrary{\idxcode{none_of}}%
|
1483 | 1483 | \begin{itemdecl}
|
1484 |
| -template <class InputIterator, class Predicate> |
| 1484 | +template<class InputIterator, class Predicate> |
1485 | 1485 | bool none_of(InputIterator first, InputIterator last, Predicate pred);
|
1486 |
| -template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 1486 | +template<class ExecutionPolicy, class InputIterator, class Predicate> |
1487 | 1487 | bool none_of(ExecutionPolicy&& exec, InputIterator first, InputIterator last,
|
1488 | 1488 | Predicate pred);
|
1489 | 1489 | \end{itemdecl}
|
|
3341 | 3341 |
|
3342 | 3342 | \indexlibrary{\idxcode{is_partitioned}}%
|
3343 | 3343 | \begin{itemdecl}
|
3344 |
| -template <class InputIterator, class Predicate> |
| 3344 | +template<class InputIterator, class Predicate> |
3345 | 3345 | bool is_partitioned(InputIterator first, InputIterator last, Predicate pred);
|
3346 |
| -template <class ExecutionPolicy, class InputIterator, class Predicate> |
| 3346 | +template<class ExecutionPolicy, class InputIterator, class Predicate> |
3347 | 3347 | bool is_partitioned(ExecutionPolicy&& exec,
|
3348 | 3348 | InputIterator first, InputIterator last, Predicate pred);
|
3349 | 3349 | \end{itemdecl}
|
|
3448 | 3448 |
|
3449 | 3449 | \indexlibrary{\idxcode{partition_copy}}%
|
3450 | 3450 | \begin{itemdecl}
|
3451 |
| -template <class InputIterator, class OutputIterator1, |
| 3451 | +template<class InputIterator, class OutputIterator1, |
3452 | 3452 | class OutputIterator2, class Predicate>
|
3453 | 3453 | pair<OutputIterator1, OutputIterator2>
|
3454 | 3454 | partition_copy(InputIterator first, InputIterator last,
|
3455 | 3455 | OutputIterator1 out_true, OutputIterator2 out_false,
|
3456 | 3456 | Predicate pred);
|
3457 |
| -template <class ExecutionPolicy, class InputIterator, class OutputIterator1, |
| 3457 | +template<class ExecutionPolicy, class InputIterator, class OutputIterator1, |
3458 | 3458 | class OutputIterator2, class Predicate>
|
3459 | 3459 | pair<OutputIterator1, OutputIterator2>
|
3460 | 3460 | partition_copy(ExecutionPolicy&& exec,
|
|
0 commit comments