Combine lists, preferentially taking elements from x if there are duplicate names

meld_list_left(x, y)

Arguments

x

list

y

list

Examples

MAST:::meld_list_left(list(A=1, B=2), list(A = 0))
#> $A
#> [1] 1
#> 
#> $B
#> [1] 2
#>