Skip to content

Commit 719890e

Browse files
CaseyCarterzygoloid
authored andcommitted
Library-wide: Use "meet" for non-concept type requirements (#2796)
Partially addresses #1263.
1 parent f8b8c25 commit 719890e

14 files changed

+224
-224
lines changed

source/algorithms.tex

+25-25
Original file line numberDiff line numberDiff line change
@@ -72,43 +72,43 @@
7272
\tcode{InputIterator},
7373
\tcode{InputIterator1}, or
7474
\tcode{Input\-Iterator2},
75-
the template argument shall satisfy the
75+
the template argument shall meet the
7676
\oldconcept{InputIterator} requirements\iref{input.iterators}.
7777
\item
7878
If an algorithm's template parameter is named
7979
\tcode{OutputIterator},
8080
\tcode{OutputIterator1}, or
8181
\tcode{Output\-Iterator2},
82-
the template argument shall satisfy the
82+
the template argument shall meet the
8383
\oldconcept{OutputIterator} requirements\iref{output.iterators}.
8484
\item
8585
If an algorithm's template parameter is named
8686
\tcode{ForwardIterator},
8787
\tcode{ForwardIterator1}, or
8888
\tcode{Forward\-Iterator2},
89-
the template argument shall satisfy the
89+
the template argument shall meet the
9090
\oldconcept{ForwardIterator} requirements\iref{forward.iterators}.
9191
\item
9292
If an algorithm's template parameter is named
9393
\tcode{BidirectionalIterator},
9494
\tcode{Bidirectional\-Iterator1}, or
9595
\tcode{BidirectionalIterator2},
96-
the template argument shall satisfy the
96+
the template argument shall meet the
9797
\oldconcept{BidirectionalIterator} requirements\iref{bidirectional.iterators}.
9898
\item
9999
If an algorithm's template parameter is named
100100
\tcode{RandomAccessIterator},
101101
\tcode{Random\-AccessIterator1}, or
102102
\tcode{RandomAccessIterator2},
103-
the template argument shall satisfy the
103+
the template argument shall meet the
104104
\oldconcept{RandomAccessIterator} requirements\iref{random.access.iterators}.
105105
\end{itemize}
106106

107107
\pnum
108108
If an algorithm's \effects element specifies
109109
that a value pointed to by any iterator passed as an argument is modified,
110110
then that algorithm has an additional type requirement:
111-
The type of that argument shall satisfy
111+
The type of that argument shall meet
112112
the requirements of a mutable iterator\iref{iterator.requirements}.
113113
\begin{note}
114114
This requirement does not affect arguments that are named
@@ -3000,7 +3000,7 @@
30003000
\begin{itemdescr}
30013001
\pnum
30023002
\requires
3003-
\tcode{Function} shall satisfy
3003+
\tcode{Function} shall meet
30043004
the \oldconcept{MoveConstructible} requirements (\tref{cpp17.moveconstructible}).
30053005
\begin{note}
30063006
\tcode{Function} need not meet the requirements of
@@ -3013,7 +3013,7 @@
30133013
every iterator in the range \range{first}{last},
30143014
starting from \tcode{first} and proceeding to \tcode{last - 1}.
30153015
\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,
30173017
\tcode{f} may apply non-constant functions through the dereferenced iterator.
30183018
\end{note}
30193019

@@ -3041,14 +3041,14 @@
30413041
\begin{itemdescr}
30423042
\pnum
30433043
\requires
3044-
\tcode{Function} shall satisfy the \oldconcept{CopyConstructible} requirements.
3044+
\tcode{Function} shall meet the \oldconcept{CopyConstructible} requirements.
30453045

30463046
\pnum
30473047
\effects
30483048
Applies \tcode{f} to the result of dereferencing
30493049
every iterator in the range \range{first}{last}.
30503050
\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,
30523052
\tcode{f} may apply non-constant functions through the dereferenced iterator.
30533053
\end{note}
30543054

@@ -3121,7 +3121,7 @@
31213121
\begin{itemdescr}
31223122
\pnum
31233123
\requires
3124-
\tcode{Function} shall satisfy the \oldconcept{MoveConstructible} requirements
3124+
\tcode{Function} shall meet the \oldconcept{MoveConstructible} requirements
31253125
\begin{note}
31263126
\tcode{Function} need not meet
31273127
the requirements of \oldconcept{CopyConstructible}.
@@ -3136,7 +3136,7 @@
31363136
Applies \tcode{f} to the result of dereferencing
31373137
every iterator in the range \range{first}{first + n} in order.
31383138
\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,
31403140
\tcode{f} may apply non-constant functions through the dereferenced iterator.
31413141
\end{note}
31423142

@@ -3159,7 +3159,7 @@
31593159
\begin{itemdescr}
31603160
\pnum
31613161
\requires
3162-
\tcode{Function} shall satisfy the \oldconcept{CopyConstructible} requirements.
3162+
\tcode{Function} shall meet the \oldconcept{CopyConstructible} requirements.
31633163

31643164
\pnum
31653165
\requires
@@ -3170,7 +3170,7 @@
31703170
Applies \tcode{f} to the result of dereferencing
31713171
every iterator in the range \range{first}{first + n}.
31723172
\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,
31743174
\tcode{f} may apply non-constant functions through the dereferenced iterator.
31753175
\end{note}
31763176

@@ -5534,23 +5534,23 @@
55345534
\requires
55355535
\begin{itemize}
55365536
\item
5537-
\tcode{PopulationIterator} shall satisfy
5537+
\tcode{PopulationIterator} shall meet
55385538
the \oldconcept{InputIterator} requirements\iref{input.iterators}.
55395539
\item
5540-
\tcode{SampleIterator} shall satisfy
5540+
\tcode{SampleIterator} shall meet
55415541
the \oldconcept{OutputIterator} requirements\iref{output.iterators}.
55425542
\item
5543-
\tcode{SampleIterator} shall satisfy
5543+
\tcode{SampleIterator} shall meet
55445544
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
55465546
the \oldconcept{ForwardIterator} requirements\iref{forward.iterators}.
55475547
\item
55485548
\tcode{PopulationIterator}'s value type shall be
55495549
writable\iref{iterator.requirements.general} to \tcode{out}.
55505550
\item
55515551
\tcode{Distance} shall be an integer type.
55525552
\item
5553-
\tcode{remove_reference_t<UniformRandomBitGenerator>} shall satisfy
5553+
\tcode{remove_reference_t<UniformRandomBitGenerator>} shall meet
55545554
the requirements of a uniform random bit generator type\iref{rand.req.urng}.
55555555
\item
55565556
\tcode{out} shall not be in the range \range{first}{last}.
@@ -5578,7 +5578,7 @@
55785578
\remarks
55795579
\begin{itemize}
55805580
\item
5581-
Stable if and only if \tcode{PopulationIterator} satisfies
5581+
Stable if and only if \tcode{PopulationIterator} meets
55825582
the \oldconcept{ForwardIterator} requirements.
55835583
\item
55845584
To the extent that the implementation of this function makes use
@@ -5657,7 +5657,7 @@
56575657
\begin{itemdescr}
56585658
\pnum
56595659
\requires
5660-
The type of \tcode{*first} shall satisfy
5660+
The type of \tcode{*first} shall meet
56615661
the \oldconcept{MoveAssignable} requirements.
56625662

56635663
\pnum
@@ -5696,7 +5696,7 @@
56965696
\begin{itemdescr}
56975697
\pnum
56985698
\requires
5699-
The type of \tcode{*first} shall satisfy
5699+
The type of \tcode{*first} shall meet
57005700
the \oldconcept{MoveAssignable} requirements.
57015701
\tcode{ForwardIterator} shall meet
57025702
the \oldconcept{BidirectionalIterator} requirements\iref{bidirectional.iterators} or
@@ -5708,7 +5708,7 @@
57085708
Otherwise, moves the element
57095709
from position \tcode{first + i} into \tcode{position first + n + i}
57105710
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
57125712
the \oldconcept{BidirectionalIterator} requirements,
57135713
does so in order starting
57145714
from \tcode{i = (last - first) - n - 1} and proceeding to \tcode{i = 0}.
@@ -8803,7 +8803,7 @@
88038803
\begin{itemdescr}
88048804
\pnum
88058805
\requires
8806-
\tcode{T} shall satisfy
8806+
\tcode{T} shall meet
88078807
the \oldconcept{CopyConstructible} (\tref{cpp17.copyconstructible})
88088808
and \oldconcept{CopyAssignable} (\tref{cpp17.copyassignable}) requirements.
88098809
In the range \crange{first}{last},
@@ -8954,7 +8954,7 @@
89548954
\begin{itemdescr}
89558955
\pnum
89568956
\requires
8957-
\tcode{T} shall satisfy
8957+
\tcode{T} shall meet
89588958
the \oldconcept{CopyConstructible} (\tref{cpp17.copyconstructible})
89598959
and \oldconcept{CopyAssignable} (\tref{cpp17.copyassignable}) requirements.
89608960
In the ranges \crange{first1}{last1} and

0 commit comments

Comments
 (0)