powered by
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.
A list.
TRUE or FALSE. Should a warning be given if both x and y have elements with the same name. See note.
TRUE
FALSE
x
y
TRUE or FALSE. Should unnamed elements be allowed?
A list containing the merged inputs.
merge.list, merge
merge.list
merge
# NOT RUN { merge_dots_with_list( foo = 1, bar = 2, baz = 3, l = list(foo = 4, baz = 5, quux = 6) ) # }
Run the code above in your browser using DataLab