args {base} | R Documentation |
Displays the argument names and corresponding default values of a
(non-primitive or primitive) function.
args(name);
This function is mainly used interactively to print the argument list of a function. For programming, consider using formals instead.
+ For a closure, a closure with identical formal argument list but an empty (NULL) body. + For a primitive (function), a closure with the documented usage And NULL body. Note that some primitives do Not make use of named arguments And match by position rather than name. + NULL in case of a non-function.