Evaluate a decorated function; used to chain multiple decorated functions.
bind_record.Rd
Evaluate a decorated function; used to chain multiple decorated functions.
Examples
r_sqrt <- record(sqrt)
r_exp <- record(exp)
3 |> r_sqrt() |> bind_record(r_exp)
#> OK! Value computed successfully:
#> ---------------
#> Just
#> [1] 5.652234
#>
#> ---------------
#> This is an object of type `chronicle`.
#> Retrieve the value of this object with unveil(.c, "value").
#> To read the log of this object, call read_log(.c).
#>