Capture definition objects
dots_definitions(..., .named = FALSE, .ignore_empty = c("trailing", "none",
"all"))
For enexprs()
, ensyms()
and enquos()
, names of
arguments to capture without evaluation (including ...
). For
exprs()
and quos()
, the expressions to capture unevaluated
(including expressions contained in ...
).
Whether to ensure all dots are named. Unnamed
elements are processed with expr_text()
to figure out a default
name. If an integer, it is passed to the width
argument of
expr_text()
, if TRUE
, the default width is used. See
exprs_auto_name()
.
Whether to ignore empty arguments. Can be one
of "trailing"
, "none"
, "all"
. If "trailing"
, only the
last argument is ignored if it is empty.
dots_definitions()
is experimental. Expect API changes.