attachList {IPO} | R Documentation |
This function attaches one list at the end of another list.
attachList(params_1, params_2)
params_1 |
A List |
params_2 |
A second list which will be attached at the end of the first list. |
This is a convenience funktion, but the implementation is not optimized for speed.
A List composed of the two input lists.
Gunnar Libiseller
a <- list("a"=1, "b"=2) b <- list("c"=4, "d"=4) attachList(a, b)