make_futures | R Documentation |
Instead of evaluating its arguments, this function converts them
into futures using future::future()
. Calling future::value()
on
each one will yield the value of that expression.
make_futures(..., .future.args = list())
... |
Expressions for which to construct futures. |
.future.args |
Additional arguments to pass to
|
A list of futures, one for each expression in ...
.
library(future) flist <- make_futures(a = 1+1, b = 2+2) flist value(flist)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.