Skip to content
Prev 5555 / 12125 Next

[R-pkg-devel] Forward function call

You will first need to convert the function call to an expression, then you
can modify the expression as appropriate.

Here's a somewhat contrived minimal example:
language f(z = 2, a = 1, 3)
expression(f(z = 2, a = 1, 3))
expression(base::c(z = 2, a = 1, 3))
z a
2 1 3



On Mon, Jun 8, 2020 at 12:12 PM G?ran Brostr?m <goran.brostrom at umu.se>
wrote: