Lazy evaluation example with lapply is out of date · Issue #803 · hadley/adv-r

This example of problems with lazy evaluation (in Functions.Rmd) no longer works, since lapply has been changed to deal with this behavior: add <- function(x) { function(y) x + y } adders <- lapply...