In R, when I do
substitute(function(a) { a })[[2]]
I see the following pairlist:
$a
Note that the value of the element is empty. How can I create such a pairlist? The following doesn't work for me :
> pairlist(a="")
$a
[1] ""
I am asking this in the context of programmatically creating a function. I want to do something like
> call("function", pairlist(a=""), call("{", as.symbol("a")))
function(a = "") {
a
}
This is quite close to what I get by doing
> substitute(function(a){a})
function(a) {
a
}
except for the function argument part.