merge.list | R Documentation |
Merges two lists, taking duplicated elements from the first list.
## S3 method for class 'list' merge(x, y, warn_on_dupes = TRUE, allow_unnamed_elements = FALSE, ...)
x |
A list. |
y |
A list. |
warn_on_dupes |
|
allow_unnamed_elements |
|
... |
Ignored. |
A list, combining elements from x
and y
.
In the event of elements that are duplicated between x
and
y
, the versions from x
are used.
merge_dots_with_list
, merge
merge( list(foo = 1, bar = 2, baz = 3), list(foo = 4, baz = 5, quux = 6) ) # If unnamed elements are allowed, they are included at the end merge( list("a", foo = 1, "b", bar = 2, baz = 3, "c"), list(foo = 4, "a", baz = 5, "b", quux = 6, "d"), allow_unnamed_elements = TRUE )