Implicit cache of a function and of the given call.
flow_call(fn_call, fn_id = NULL, flow_options = get_flow_options())
fn_call | Function call to be processed. |
---|---|
fn_id | Character or Integer. Optional id to uniquely identify
the function. By default, rflow functions reuse the |
flow_options | List of options created using |
The flow object.
fn <- function(x, y) { x + y + 3 } call_flow <- flow_call(fn(x = 1, y = 2))#> Error in eval(unmatched_fn_call[[1L]]): object 'fn' not found#> Error in eval(lhs, parent, parent): object 'call_flow' not found