R/HelperFunctions.R
listAppend.Rd
join two lists
listAppend(a, b)
A list
Another list
the joined list
This function joins two lists
a <- list(a = 1, b = 2) b <- list(c = 3, d = 4) listAppend(a, b) #> $a #> [1] 1 #> #> $b #> [1] 2 #> #> $c #> [1] 3 #> #> $d #> [1] 4 #>