incl/futureCall.R

## EXAMPLE: futureCall() and do.call()
x <- 1:100
y0 <- do.call(sum, args = list(x))
print(y0)

f1 <- futureCall(sum, args = list(x))
y1 <- value(f1)
print(y1)
MINATILO/FUTURE documentation built on Dec. 17, 2021, 1:21 a.m.