Skip to contents

append list

Usage

append_list(list_obj = list(), ...)

Arguments

list_obj

list object

...

anything to be appended to the list

Value

list

Examples

a <- list()
append_list(a, 1, 2, 3)
#> [[1]]
#> [1] 1 2 3
#>