Merge ellipsis args with a list.
Merges variable length ellipsis arguments to a function with a list argument.
merge_dots_with_list( ..., l = list(), warn_on_dupes = TRUE, allow_unnamed_elements = FALSE )
... |
Some inputs. |
l |
A list. |
warn_on_dupes |
|
allow_unnamed_elements |
|
A list containing the merged inputs.
If any arguments are present in both the ...
and l
arguments, the ...
version takes preference, and a warning is thrown.
merge_dots_with_list( foo = 1, bar = 2, baz = 3, l = list(foo = 4, baz = 5, quux = 6) )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.