lapplym {wrapr} | R Documentation |
Memoizing wrapper for lapply.
Description
Memoizing wrapper for lapply.
Usage
lapplym(X, FUN, ...)
Arguments
X |
list or vector of inputs |
FUN |
function to apply |
... |
additional arguments passed to lapply |
Value
list of results.
See Also
VectorizeM
, vapplym
, parLapplyLBm
Examples
fs <- function(x) { x <- x[[1]]; print(paste("see", x)); sin(x) }
# should only print "see" twice, not 6 times
lapplym(c(0, 1, 1, 0, 0, 1), fs)
[Package wrapr version 2.1.0 Index]