function_defaults {oeli} | R Documentation |
This function returns the default function arguments (if any).
function_defaults(f, exclude = NULL)
f |
A |
exclude |
A |
A named list
.
f <- function(a, b = 1, c = "", ...) { }
function_defaults(f)
function_defaults(f, exclude = "b")