append_list.Rd
append list
append_list(list_obj = list(), ...)
list object
anything to be appended to the list
list
a <- list() append_list(a, 1, 2, 3) #> [[1]] #> [1] 1 2 3 #>