In R, is it possible to have a the software ignore the fact that there are unused arguments defined when a module is run?
R
For example, I have a module <
Change the definition of multiply to take additional unknown arguments:
multiply <- function(a, b, ...) { # Original code }