powered by
Combine lists by adding element-wise.
add_lists(l1, l2)
A list.
A pair of lists.
l1 <- list(a = 1, b = 2) l2 <- list(a = 3, b = 4, c = 5) add_lists(l1, l2)
Run the code above in your browser using DataLab