The R Project SVN R

Rev

Rev 81670 | Rev 85234 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 81670 Rev 85061
Line 1... Line 1...
1
% File src/library/base/man/function.Rd
1
% File src/library/base/man/function.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2021 R Core Team
3
% Copyright 1995-2023 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{function}
6
\name{function}
7
\alias{function}
7
\alias{function}
8
\alias{return}
8
\alias{return}
Line 17... Line 17...
17
\description{
17
\description{
18
  These functions provide the base mechanisms for defining
18
  These functions provide the base mechanisms for defining
19
  new functions in the \R language.
19
  new functions in the \R language.
20
}
20
}
21
\arguments{
21
\arguments{
22
    \item{arglist}{Empty or one or more name or name=expression terms.}
22
  \item{arglist}{empty or one or more (comma-separated) \samp{name} or
-
 
23
    \samp{\var{name} = \var{expression}} terms
-
 
24
    and/or the special token \code{\link{...}}.}
23
    \item{expr}{An expression.}
25
  \item{expr}{an expression.}
24
    \item{value}{An expression.}
26
  \item{value}{an expression.}
25
}
27
}
26
\details{
28
\details{
27
  The names in an argument list can be back-quoted non-standard names
29
  The names in an argument list can be back-quoted non-standard names
28
  (see \sQuote{\link{backquote}}).
30
  (see \sQuote{\link{backquote}}).
29
 
31