dots_splice {rlang} | R Documentation |
Splice lists
Description
dots_splice()
is like dots_list()
but automatically splices
list inputs.
Usage
dots_splice(
...,
.ignore_empty = c("trailing", "none", "all"),
.preserve_empty = FALSE,
.homonyms = c("keep", "first", "last", "error"),
.check_assign = FALSE
)
Arguments
... |
Arguments to collect in a list. These dots are dynamic. |
.ignore_empty |
Whether to ignore empty arguments. Can be one
of |
.preserve_empty |
Whether to preserve the empty arguments that
were not ignored. If |
.homonyms |
How to treat arguments with the same name. The
default, |
.check_assign |
Whether to check for |