Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/meta.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,7 @@
consteval bool is_function_parameter(info r);
consteval bool is_explicit_object_parameter(info r);
consteval bool has_default_argument(info r);
consteval bool has_ellipsis_parameter(info r);
consteval bool is_vararg_function(info r);

consteval bool is_template(info r);
consteval bool is_function_template(info r);
Expand Down Expand Up @@ -4480,16 +4480,16 @@
Otherwise, \tcode{false}.
\end{itemdescr}

\indexlibraryglobal{has_ellipsis_parameter}%
\indexlibraryglobal{is_vararg_function}%
\begin{itemdecl}
consteval bool has_ellipsis_parameter(info r);
consteval bool is_vararg_function(info r);
\end{itemdecl}

\begin{itemdescr}
\pnum
\returns
\tcode{true} if \tcode{r} represents a function or function type
that has an ellipsis in its parameter-type-list\iref{dcl.fct}.
that is a vararg function\iref{dcl.fct}.
Otherwise, \tcode{false}.
\end{itemdescr}

Expand Down
Loading