|
72 | 72 | \tcode{InputIterator},
|
73 | 73 | \tcode{InputIterator1}, or
|
74 | 74 | \tcode{Input\-Iterator2},
|
75 |
| - the template argument shall satisfy the |
| 75 | + the template argument shall meet the |
76 | 76 | \oldconcept{InputIterator} requirements\iref{input.iterators}.
|
77 | 77 | \item
|
78 | 78 | If an algorithm's template parameter is named
|
79 | 79 | \tcode{OutputIterator},
|
80 | 80 | \tcode{OutputIterator1}, or
|
81 | 81 | \tcode{Output\-Iterator2},
|
82 |
| - the template argument shall satisfy the |
| 82 | + the template argument shall meet the |
83 | 83 | \oldconcept{OutputIterator} requirements\iref{output.iterators}.
|
84 | 84 | \item
|
85 | 85 | If an algorithm's template parameter is named
|
86 | 86 | \tcode{ForwardIterator},
|
87 | 87 | \tcode{ForwardIterator1}, or
|
88 | 88 | \tcode{Forward\-Iterator2},
|
89 |
| - the template argument shall satisfy the |
| 89 | + the template argument shall meet the |
90 | 90 | \oldconcept{ForwardIterator} requirements\iref{forward.iterators}.
|
91 | 91 | \item
|
92 | 92 | If an algorithm's template parameter is named
|
93 | 93 | \tcode{BidirectionalIterator},
|
94 | 94 | \tcode{Bidirectional\-Iterator1}, or
|
95 | 95 | \tcode{BidirectionalIterator2},
|
96 |
| - the template argument shall satisfy the |
| 96 | + the template argument shall meet the |
97 | 97 | \oldconcept{BidirectionalIterator} requirements\iref{bidirectional.iterators}.
|
98 | 98 | \item
|
99 | 99 | If an algorithm's template parameter is named
|
100 | 100 | \tcode{RandomAccessIterator},
|
101 | 101 | \tcode{Random\-AccessIterator1}, or
|
102 | 102 | \tcode{RandomAccessIterator2},
|
103 |
| - the template argument shall satisfy the |
| 103 | + the template argument shall meet the |
104 | 104 | \oldconcept{RandomAccessIterator} requirements\iref{random.access.iterators}.
|
105 | 105 | \end{itemize}
|
106 | 106 |
|
107 | 107 | \pnum
|
108 | 108 | If an algorithm's \effects element specifies
|
109 | 109 | that a value pointed to by any iterator passed as an argument is modified,
|
110 | 110 | then that algorithm has an additional type requirement:
|
111 |
| -The type of that argument shall satisfy |
| 111 | +The type of that argument shall meet |
112 | 112 | the requirements of a mutable iterator\iref{iterator.requirements}.
|
113 | 113 | \begin{note}
|
114 | 114 | This requirement does not affect arguments that are named
|
|
3000 | 3000 | \begin{itemdescr}
|
3001 | 3001 | \pnum
|
3002 | 3002 | \requires
|
3003 |
| -\tcode{Function} shall satisfy |
| 3003 | +\tcode{Function} shall meet |
3004 | 3004 | the \oldconcept{MoveConstructible} requirements (\tref{cpp17.moveconstructible}).
|
3005 | 3005 | \begin{note}
|
3006 | 3006 | \tcode{Function} need not meet the requirements of
|
|
3013 | 3013 | every iterator in the range \range{first}{last},
|
3014 | 3014 | starting from \tcode{first} and proceeding to \tcode{last - 1}.
|
3015 | 3015 | \begin{note}
|
3016 |
| -If the type of \tcode{first} satisfies the requirements of a mutable iterator, |
| 3016 | +If the type of \tcode{first} meets the requirements of a mutable iterator, |
3017 | 3017 | \tcode{f} may apply non-constant functions through the dereferenced iterator.
|
3018 | 3018 | \end{note}
|
3019 | 3019 |
|
|
3041 | 3041 | \begin{itemdescr}
|
3042 | 3042 | \pnum
|
3043 | 3043 | \requires
|
3044 |
| -\tcode{Function} shall satisfy the \oldconcept{CopyConstructible} requirements. |
| 3044 | +\tcode{Function} shall meet the \oldconcept{CopyConstructible} requirements. |
3045 | 3045 |
|
3046 | 3046 | \pnum
|
3047 | 3047 | \effects
|
3048 | 3048 | Applies \tcode{f} to the result of dereferencing
|
3049 | 3049 | every iterator in the range \range{first}{last}.
|
3050 | 3050 | \begin{note}
|
3051 |
| -If the type of \tcode{first} satisfies the requirements of a mutable iterator, |
| 3051 | +If the type of \tcode{first} meets the requirements of a mutable iterator, |
3052 | 3052 | \tcode{f} may apply non-constant functions through the dereferenced iterator.
|
3053 | 3053 | \end{note}
|
3054 | 3054 |
|
|
3121 | 3121 | \begin{itemdescr}
|
3122 | 3122 | \pnum
|
3123 | 3123 | \requires
|
3124 |
| -\tcode{Function} shall satisfy the \oldconcept{MoveConstructible} requirements |
| 3124 | +\tcode{Function} shall meet the \oldconcept{MoveConstructible} requirements |
3125 | 3125 | \begin{note}
|
3126 | 3126 | \tcode{Function} need not meet
|
3127 | 3127 | the requirements of \oldconcept{CopyConstructible}.
|
|
3136 | 3136 | Applies \tcode{f} to the result of dereferencing
|
3137 | 3137 | every iterator in the range \range{first}{first + n} in order.
|
3138 | 3138 | \begin{note}
|
3139 |
| -If the type of \tcode{first} satisfies the requirements of a mutable iterator, |
| 3139 | +If the type of \tcode{first} meets the requirements of a mutable iterator, |
3140 | 3140 | \tcode{f} may apply non-constant functions through the dereferenced iterator.
|
3141 | 3141 | \end{note}
|
3142 | 3142 |
|
|
3159 | 3159 | \begin{itemdescr}
|
3160 | 3160 | \pnum
|
3161 | 3161 | \requires
|
3162 |
| -\tcode{Function} shall satisfy the \oldconcept{CopyConstructible} requirements. |
| 3162 | +\tcode{Function} shall meet the \oldconcept{CopyConstructible} requirements. |
3163 | 3163 |
|
3164 | 3164 | \pnum
|
3165 | 3165 | \requires
|
|
3170 | 3170 | Applies \tcode{f} to the result of dereferencing
|
3171 | 3171 | every iterator in the range \range{first}{first + n}.
|
3172 | 3172 | \begin{note}
|
3173 |
| -If the type of \tcode{first} satisfies the requirements of a mutable iterator, |
| 3173 | +If the type of \tcode{first} meets the requirements of a mutable iterator, |
3174 | 3174 | \tcode{f} may apply non-constant functions through the dereferenced iterator.
|
3175 | 3175 | \end{note}
|
3176 | 3176 |
|
|
5534 | 5534 | \requires
|
5535 | 5535 | \begin{itemize}
|
5536 | 5536 | \item
|
5537 |
| - \tcode{PopulationIterator} shall satisfy |
| 5537 | + \tcode{PopulationIterator} shall meet |
5538 | 5538 | the \oldconcept{InputIterator} requirements\iref{input.iterators}.
|
5539 | 5539 | \item
|
5540 |
| - \tcode{SampleIterator} shall satisfy |
| 5540 | + \tcode{SampleIterator} shall meet |
5541 | 5541 | the \oldconcept{OutputIterator} requirements\iref{output.iterators}.
|
5542 | 5542 | \item
|
5543 |
| - \tcode{SampleIterator} shall satisfy |
| 5543 | + \tcode{SampleIterator} shall meet |
5544 | 5544 | the \oldconcept{RandomAccessIterator} requirements\iref{random.access.iterators}
|
5545 |
| - unless \tcode{Pop\-ulat\-ion\-Iter\-ator} satisfies |
| 5545 | + unless \tcode{Pop\-ulat\-ion\-Iter\-ator} meets |
5546 | 5546 | the \oldconcept{ForwardIterator} requirements\iref{forward.iterators}.
|
5547 | 5547 | \item
|
5548 | 5548 | \tcode{PopulationIterator}'s value type shall be
|
5549 | 5549 | writable\iref{iterator.requirements.general} to \tcode{out}.
|
5550 | 5550 | \item
|
5551 | 5551 | \tcode{Distance} shall be an integer type.
|
5552 | 5552 | \item
|
5553 |
| - \tcode{remove_reference_t<UniformRandomBitGenerator>} shall satisfy |
| 5553 | + \tcode{remove_reference_t<UniformRandomBitGenerator>} shall meet |
5554 | 5554 | the requirements of a uniform random bit generator type\iref{rand.req.urng}.
|
5555 | 5555 | \item
|
5556 | 5556 | \tcode{out} shall not be in the range \range{first}{last}.
|
|
5578 | 5578 | \remarks
|
5579 | 5579 | \begin{itemize}
|
5580 | 5580 | \item
|
5581 |
| - Stable if and only if \tcode{PopulationIterator} satisfies |
| 5581 | + Stable if and only if \tcode{PopulationIterator} meets |
5582 | 5582 | the \oldconcept{ForwardIterator} requirements.
|
5583 | 5583 | \item
|
5584 | 5584 | To the extent that the implementation of this function makes use
|
|
5657 | 5657 | \begin{itemdescr}
|
5658 | 5658 | \pnum
|
5659 | 5659 | \requires
|
5660 |
| -The type of \tcode{*first} shall satisfy |
| 5660 | +The type of \tcode{*first} shall meet |
5661 | 5661 | the \oldconcept{MoveAssignable} requirements.
|
5662 | 5662 |
|
5663 | 5663 | \pnum
|
|
5696 | 5696 | \begin{itemdescr}
|
5697 | 5697 | \pnum
|
5698 | 5698 | \requires
|
5699 |
| -The type of \tcode{*first} shall satisfy |
| 5699 | +The type of \tcode{*first} shall meet |
5700 | 5700 | the \oldconcept{MoveAssignable} requirements.
|
5701 | 5701 | \tcode{ForwardIterator} shall meet
|
5702 | 5702 | the \oldconcept{BidirectionalIterator} requirements\iref{bidirectional.iterators} or
|
|
5708 | 5708 | Otherwise, moves the element
|
5709 | 5709 | from position \tcode{first + i} into \tcode{position first + n + i}
|
5710 | 5710 | for each non-negative integer \tcode{i < (last - first) - n}.
|
5711 |
| -In the first overload case, if \tcode{ForwardIterator} satisfies |
| 5711 | +In the first overload case, if \tcode{ForwardIterator} meets |
5712 | 5712 | the \oldconcept{BidirectionalIterator} requirements,
|
5713 | 5713 | does so in order starting
|
5714 | 5714 | from \tcode{i = (last - first) - n - 1} and proceeding to \tcode{i = 0}.
|
|
8803 | 8803 | \begin{itemdescr}
|
8804 | 8804 | \pnum
|
8805 | 8805 | \requires
|
8806 |
| -\tcode{T} shall satisfy |
| 8806 | +\tcode{T} shall meet |
8807 | 8807 | the \oldconcept{CopyConstructible} (\tref{cpp17.copyconstructible})
|
8808 | 8808 | and \oldconcept{CopyAssignable} (\tref{cpp17.copyassignable}) requirements.
|
8809 | 8809 | In the range \crange{first}{last},
|
|
8954 | 8954 | \begin{itemdescr}
|
8955 | 8955 | \pnum
|
8956 | 8956 | \requires
|
8957 |
| -\tcode{T} shall satisfy |
| 8957 | +\tcode{T} shall meet |
8958 | 8958 | the \oldconcept{CopyConstructible} (\tref{cpp17.copyconstructible})
|
8959 | 8959 | and \oldconcept{CopyAssignable} (\tref{cpp17.copyassignable}) requirements.
|
8960 | 8960 | In the ranges \crange{first1}{last1} and
|
|
0 commit comments