Description Usage Arguments Value Examples
For example, list_merge(list(a = 1, b = 2), list(b = 3, c = 4))
will be list(a = 1, b = 3, c = 4).
1  | list_merge(list1, list2)
 | 
list1 | 
 list  | 
list2 | 
 list  | 
the merged list.
1 2 3  | stopifnot(identical(syberiaStages:::list_merge(list(a = 1, b = 2), list(b = 3, c = 4)),
                    list(a = 1, b = 3, c = 4)))
stopifnot(identical(syberiaStages:::list_merge(NULL, list(a = 1)), list(a = 1)))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.