I am trying to understand why this code works:
tmp <- list(this = list(1:5),
that = list(10*c(1:5)),
other = list(100*c(1:5)))
tmp %>% pmap(function(this, that, other) paste(this, that, other))
... but the following code produces an "unused arguments" error:
tmp %>% pmap(function(a, b, c) paste(a, b, c))
I came across this GitHub post, but I'm still not clear on how it might apply.. thanks!