Say I have a bunch of functions, each with something likeMyFunction.1, etc. I want to pass these functions into another function, which prints out a small repo
MyFunction.1
You can get the unevaluated arguments of a function via match.call. For example:
match.call
> x <- function(y) print(match.call()[2]) > x(lm) lm()