For example, can I do something like this?
f1 <- function(x, y){
x + y
}
f2 <- function(a, b){
a * b
}
ff <- function(x, a, ...){
cat(f1(x, ...))
cat(f2(a, ...))
}
I have tried the above but it got an error Error in f1(x, ...) : unused argument (1)
.