Foundations of Functional Programming with purrr
Auriel Fournier
Instructor
short_list <- list(-10, 1, 10)
short_list
[[1]]
[1] -10
[[2]]
[1] 1
[[3]]
[1] 10
walk(short_list, print)
[1] -10
[1] 1
[1] 10
plist
[[1]]
[[2]]
walk(plist, print)
Foundations of Functional Programming with purrr