All named entries in the dots object will be bound to
variables. Unnamed entries will be appended to any existing value
of ...
in the order in which they appear.
Arguments
- x
A dots object with names.
- env
Specify an environment object to populate and return. By default a new environment is created.
- names
Which variables to populate in the environment. If NULL is given, will use all names present in the dotlist. If a name is given that does not match any names from the dots object, an error is raised.
- use_dots
Whether to bind unnamed or unmatched items to
...
. If FALSE, these items are discarded. If TRUE, they bound to...
in the environment. If items have duplicate names, the earlier ones are used and the rest placed in "...".- append
if
TRUE
, unmatched or unnamed items will be appended to any existing value of '...'. IfFALSE
, the existing binding of...
will be cleared. (Neither happens ifuse_dots
is FALSE.)- hash
if
env
is NULL, this argument is passed tonew.env
.- size
if
env
is NULL, this argument is paseed tonew.env
.- parent
if
env
is NULL, this argument is paseed tonew.env
.