|
609 | 609 |
|
610 | 610 | namespace std {
|
611 | 611 | // \ref{alg.nonmodifying}, non-modifying sequence operations
|
612 |
| - // \ref{alg.all_of}, all of |
| 612 | + // \ref{alg.all.of}, all of |
613 | 613 | template<class InputIterator, class Predicate>
|
614 | 614 | constexpr bool all_of(InputIterator first, InputIterator last, Predicate pred);
|
615 | 615 | template<class ExecutionPolicy, class ForwardIterator, class Predicate>
|
|
625 | 625 | constexpr bool all_of(R&& r, Pred pred, Proj proj = {});
|
626 | 626 | }
|
627 | 627 |
|
628 |
| - // \ref{alg.any_of}, any of |
| 628 | + // \ref{alg.any.of}, any of |
629 | 629 | template<class InputIterator, class Predicate>
|
630 | 630 | constexpr bool any_of(InputIterator first, InputIterator last, Predicate pred);
|
631 | 631 | template<class ExecutionPolicy, class ForwardIterator, class Predicate>
|
|
641 | 641 | constexpr bool any_of(R&& r, Pred pred, Proj proj = {});
|
642 | 642 | }
|
643 | 643 |
|
644 |
| - // \ref{alg.none_of}, none of |
| 644 | + // \ref{alg.none.of}, none of |
645 | 645 | template<class InputIterator, class Predicate>
|
646 | 646 | constexpr bool none_of(InputIterator first, InputIterator last, Predicate pred);
|
647 | 647 | template<class ExecutionPolicy, class ForwardIterator, class Predicate>
|
|
1013 | 1013 | Proj1 proj1 = {}, Proj2 proj2 = {});
|
1014 | 1014 | }
|
1015 | 1015 |
|
1016 |
| - // \ref{alg.is_permutation}, is permutation |
| 1016 | + // \ref{alg.is.permutation}, is permutation |
1017 | 1017 | template<class ForwardIterator1, class ForwardIterator2>
|
1018 | 1018 | constexpr bool is_permutation(ForwardIterator1 first1, ForwardIterator1 last1,
|
1019 | 1019 | ForwardIterator2 first2);
|
|
2888 | 2888 |
|
2889 | 2889 | \rSec1[alg.nonmodifying]{Non-modifying sequence operations}
|
2890 | 2890 |
|
2891 |
| -\rSec2[alg.all_of]{All of} |
| 2891 | +\rSec2[alg.all.of]{All of} |
2892 | 2892 |
|
2893 | 2893 | \indexlibrary{\idxcode{all_of}}%
|
2894 | 2894 | \begin{itemdecl}
|
|
2924 | 2924 | At most \tcode{last - first} applications of the predicate and any projection.
|
2925 | 2925 | \end{itemdescr}
|
2926 | 2926 |
|
2927 |
| -\rSec2[alg.any_of]{Any of} |
| 2927 | +\rSec2[alg.any.of]{Any of} |
2928 | 2928 |
|
2929 | 2929 | \indexlibrary{\idxcode{any_of}}%
|
2930 | 2930 | \begin{itemdecl}
|
|
2959 | 2959 | and any projection.
|
2960 | 2960 | \end{itemdescr}
|
2961 | 2961 |
|
2962 |
| -\rSec2[alg.none_of]{None of} |
| 2962 | +\rSec2[alg.none.of]{None of} |
2963 | 2963 |
|
2964 | 2964 | \indexlibrary{\idxcode{none_of}}%
|
2965 | 2965 | \begin{itemdecl}
|
|
3781 | 3781 | \end{itemize}
|
3782 | 3782 | \end{itemdescr}
|
3783 | 3783 |
|
3784 |
| -\rSec2[alg.is_permutation]{Is permutation} |
| 3784 | +\rSec2[alg.is.permutation]{Is permutation} |
3785 | 3785 |
|
3786 | 3786 | \indexlibrary{\idxcode{is_permutation}}%
|
3787 | 3787 | \begin{itemdecl}
|
|
0 commit comments