我想实现一个通用功能:
call_with_parameters <- function(func, parameters) {
call func with parameters and return result
}
它使用参数列表调用给定的函数func(作为参数给出),因此 func 一定不能处理泛型参数(如 ...)。作为回电
例如调用:mean(x=1:4, na.rm=TRUE)
as
call_with_parameters(mean, list(x=1:4, na.rm=TRUE))
有什么建议么?