x <- list(1, 10, 100)
y <- list(1, 2, 3)
z <- list(5, 50, 500)
purrr::pmap(list(x, y, z), sum)
output is:
[[1]]
NULL
[[2]]
NULL
[[3]]
NULL
Actually, this is an example from the function documentation.
x <- list(1, 10, 100)
y <- list(1, 2, 3)
z <- list(5, 50, 500)
purrr::pmap(list(x, y, z), sum)
output is:
[[1]]
NULL
[[2]]
NULL
[[3]]
NULL
Actually, this is an example from the function documentation.