Does R provide an object/function/method/keyword to get all function arguments?
Using an example:
function(a, b="default", ...) would provide a and b as well as ... within the function environment. Is there a statement similar to list(...) that would also include a and b in the result?
Or put yet another way: a shorthand for list(a=a, b=b, ...), given function(a, b, ...)
I think that you want
match.call: