Skip to content

Commit

Permalink
[func.not_fn], [func.bind_front] fix phrasing of \mandates and \expec…
Browse files Browse the repository at this point in the history
…ts (#2750)

The Mandates: element should just state its condition, and not say "shall".
Cpp17 concept requirements should be phrased as "X meets the
Y requirements" not "X shall meet the requirements of Y".
  • Loading branch information
jwakely authored and zygoloid committed Mar 15, 2019
1 parent 48484c9 commit 721f2d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -15268,11 +15268,11 @@
\pnum
\mandates
\tcode{is_constructible_v<FD, F> \&\& is_move_constructible_v<FD>}
shall be true.
is true.

\pnum
\expects
\tcode{FD} shall meet the requirements of \oldconcept{MoveConstructible}.
\tcode{FD} meets the \oldconcept{MoveConstructible} requirements.

\pnum
\returns
Expand Down Expand Up @@ -15319,14 +15319,14 @@
conjunction_v<is_constructible<FD, F>, is_move_constructible<FD>,
is_constructible<BoundArgs, Args>..., is_move_constructible<BoundArgs>...>
\end{codeblock}
shall be true.
is true.

\pnum
\expects
\tcode{FD} shall meet the requirements of \oldconcept{MoveConstructible}.
\tcode{FD} meets the \oldconcept{MoveConstructible} requirements.
For each $\tcode{T}_i$ in \tcode{BoundArgs},
if $\tcode{T}_i$ is an object type,
$\tcode{T}_i$ shall meet the requirements of \oldconcept{MoveConstructible}.
$\tcode{T}_i$ meets the \oldconcept{MoveConstructible} requirements.

\pnum
\returns
Expand Down

0 comments on commit 721f2d6

Please sign in to comment.