Skip to content

Commit 8b47744

Browse files
jwakelyzygoloid
authored andcommitted
[func.bind.bind] Use math mode for non-C++ ellipses
1 parent 367dfef commit 8b47744

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

source/utilities.tex

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14274,22 +14274,22 @@
1427414274
\requires
1427514275
\tcode{is_constructible_v<FD, F>} shall be \tcode{true}. For each $\tcode{T}_i$
1427614276
in \tcode{BoundArgs}, \tcode{is_cons\-tructible_v<$\tcode{TD}_i$, $\tcode{T}_i$>} shall be \tcode{true}.
14277-
\tcode{\placeholdernc{INVOKE}(fd, $\tcode{w}_1$, $\tcode{w}_2$, \ldots,
14277+
\tcode{\placeholdernc{INVOKE}(fd, $\tcode{w}_1$, $\tcode{w}_2$, $\dotsc$,
1427814278
$\tcode{w}_N$)}~(\ref{func.require}) shall be a valid expression for some
14279-
values $\tcode{w}_1$, $\tcode{w}_2$, \ldots, $\tcode{w}_N$, where
14279+
values $\tcode{w}_1$, $\tcode{w}_2$, $\dotsc{}$, $\tcode{w}_N$, where
1428014280
$N$ has the value \tcode{sizeof...(bound_args)}.
1428114281
The cv-qualifiers \cv{} of the call wrapper \tcode{g},
1428214282
as specified below, shall be neither \tcode{volatile} nor \tcode{const volatile}.
1428314283

1428414284
\pnum\returns
1428514285
A forwarding call wrapper \tcode{g}~(\ref{func.require}).
14286-
The effect of \tcode{g($\tcode{u}_1$, $\tcode{u}_2$, \ldots, $\tcode{u}_M$)} shall
14286+
The effect of \tcode{g($\tcode{u}_1$, $\tcode{u}_2$, $\dotsc$, $\tcode{u}_M$)} shall
1428714287
be
1428814288
\begin{codeblock}
14289-
@\placeholdernc{INVOKE}@(fd, std::forward<@$\tcode{V}_1$@>(@$\tcode{v}_1$@), std::forward<@$\tcode{V}_2$@>(@$\tcode{v}_2$@), @\ldots @, std::forward<@$\tcode{V}_N$@>(@$\tcode{v}_N$@))
14289+
@\placeholdernc{INVOKE}@(fd, std::forward<@$\tcode{V}_1$@>(@$\tcode{v}_1$@), std::forward<@$\tcode{V}_2$@>(@$\tcode{v}_2$@), @$\dotsc$@, std::forward<@$\tcode{V}_N$@>(@$\tcode{v}_N$@))
1429014290
\end{codeblock}
1429114291
where the values and types of the bound
14292-
arguments $\tcode{v}_1$, $\tcode{v}_2$, \ldots, $\tcode{v}_N$ are determined as specified below.
14292+
arguments $\tcode{v}_1$, $\tcode{v}_2$, $\dotsc$, $\tcode{v}_N$ are determined as specified below.
1429314293
The copy constructor and move constructor of the forwarding call wrapper shall throw an
1429414294
exception if and only if the corresponding constructor of \tcode{FD} or of any of the types
1429514295
$\tcode{TD}_i$ throws an exception.
@@ -14316,9 +14316,9 @@
1431614316
\requires
1431714317
\tcode{is_constructible_v<FD, F>} shall be \tcode{true}. For each $\tcode{T}_i$
1431814318
in \tcode{BoundArgs}, \tcode{is_con\-structible_v<$\tcode{TD}_i$, $\tcode{T}_i$>} shall be \tcode{true}.
14319-
\tcode{\placeholdernc{INVOKE}(fd, $\tcode{w}_1$, $\tcode{w}_2$, \ldots, $\tcode{w}_N$)} shall be a valid
14319+
\tcode{\placeholdernc{INVOKE}(fd, $\tcode{w}_1$, $\tcode{w}_2$, $\dotsc$, $\tcode{w}_N$)} shall be a valid
1432014320
expression for some
14321-
values $\tcode{w}_1$, $\tcode{w}_2$, \ldots, $\tcode{w}_N$, where
14321+
values $\tcode{w}_1$, $\tcode{w}_2$, $\dotsc$, $\tcode{w}_N$, where
1432214322
$N$ has the value \tcode{sizeof...(bound_args)}.
1432314323
The cv-qualifiers \cv{} of the call wrapper \tcode{g},
1432414324
as specified below, shall be neither \tcode{volatile} nor \tcode{const volatile}.
@@ -14327,12 +14327,12 @@
1432714327
\returns
1432814328
A forwarding call wrapper \tcode{g}~(\ref{func.require}).
1432914329
The effect of
14330-
\tcode{g($\tcode{u}_1$, $\tcode{u}_2$, \ldots, $\tcode{u}_M$)} shall be
14330+
\tcode{g($\tcode{u}_1$, $\tcode{u}_2$, $\dotsc$, $\tcode{u}_M$)} shall be
1433114331
\begin{codeblock}
14332-
@\placeholdernc{INVOKE}@<R>(fd, std::forward<@$\tcode{V}_1$@>(@$\tcode{v}_1$@), std::forward<@$\tcode{V}_2$@>(@$\tcode{v}_2$@), @\ldots @, std::forward<@$\tcode{V}_N$@>(@$\tcode{v}_N$@))
14332+
@\placeholdernc{INVOKE}@<R>(fd, std::forward<@$\tcode{V}_1$@>(@$\tcode{v}_1$@), std::forward<@$\tcode{V}_2$@>(@$\tcode{v}_2$@), @$\dotsc$@, std::forward<@$\tcode{V}_N$@>(@$\tcode{v}_N$@))
1433314333
\end{codeblock}
1433414334
where the values and types of the bound
14335-
arguments $\tcode{v}_1$, $\tcode{v}_2$, \ldots, $\tcode{v}_N$ are determined as specified below.
14335+
arguments $\tcode{v}_1$, $\tcode{v}_2$, $\dotsc$, $\tcode{v}_N$ are determined as specified below.
1433614336
The copy constructor and move constructor of the forwarding call wrapper shall throw an
1433714337
exception if and only if the corresponding constructor of \tcode{FD} or of any of the types
1433814338
$\tcode{TD}_i$ throws an exception.
@@ -14350,8 +14350,8 @@
1435014350

1435114351
\pnum
1435214352
\indextext{bound arguments}%
14353-
The values of the \techterm{bound arguments} $\tcode{v}_1$, $\tcode{v}_2$, \ldots, $\tcode{v}_N$ and their
14354-
corresponding types $\tcode{V}_1$, $\tcode{V}_2$, \ldots, $\tcode{V}_N$ depend on the
14353+
The values of the \techterm{bound arguments} $\tcode{v}_1$, $\tcode{v}_2$, $\dotsc$, $\tcode{v}_N$ and their
14354+
corresponding types $\tcode{V}_1$, $\tcode{V}_2$, $\dotsc$, $\tcode{V}_N$ depend on the
1435514355
types $\tcode{TD}_i$ derived from
1435614356
the call to \tcode{bind} and the
1435714357
cv-qualifiers \cv{} of the call wrapper \tcode{g} as follows:

0 commit comments

Comments
 (0)