args {base} | R Documentation |
Displays the argument names and corresponding default values of a function or primitive.
args(name)
name |
a function (a closure or a primitive).
If |
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, a closure with the documented usage and NULL
body. Note that in almost all cases primitives do not make use of
named arguments and match by position rather than name. (rep
and seq.int
are exceptions.)
NULL
in case of a non-function.
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
formals
,
help
.
args(c)
args(graphics::plot.default)