The R Project SVN R

Rev

Rev 2 | Rev 7782 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

\name{args}
\title{Argument List of a Function}
\usage{
args(fun)
}
\alias{args}
\arguments{
\item{fun}{an interpreted function.
If \code{fun} is a character string then the function
with that name is found and used.}
}
\value{
A function with identical formal argument list but an empty body.
This function is mainly used interactively.
For programming, use \code{\link{formals}} instead.
}
\seealso{
\code{\link{formals}}, \code{\link{help}}.
}
\examples{
args(args) #-> NULL (args is a 'primitive' function).
args(plot.default)
}
\keyword{documentation}