R/helper-methods.R
meld_list_left.Rd
Combine lists, preferentially taking elements from x if there are duplicate names
meld_list_left(x, y)
list
MAST:::meld_list_left(list(A=1, B=2), list(A = 0)) #> $A #> [1] 1 #> #> $B #> [1] 2 #>