This function performs a union of two lists and updates the elements of the first one if are found in the other one.
.unionList(list1, list2, combine = FALSE)
list1 | a list to be updated |
---|---|
list2 | a list to update with |
combine | a logical indicating whether the elements of the second list
should replace ( |
an updated list
Both elements have to be lists. If some elements are not named, they are preserved but the order might be lost.
#> $a #> [1] 1 #> #> $b #> [1] 1 #> #> $c #> [1] 3 #>