The R Project SVN R

Rev

Rev 85102 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 85102 Rev 88832
Line 49... Line 49...
49
}
49
}
50
\seealso{
50
\seealso{
51
  \code{\dots} and \code{..1}, \code{..2} are \emph{reserved} words in
51
  \code{\dots} and \code{..1}, \code{..2} are \emph{reserved} words in
52
  \R, see \code{\link{Reserved}}.
52
  \R, see \code{\link{Reserved}}.
53
 
53
 
54
  For more, see the
-
 
55
  \ifelse{html}{\href{/doc/manual/R-intro.html#The-three-dots-argument}{Introduction to R}}{\sQuote{Introduction to R}}
-
 
56
  manual for usage of these syntactic elements,
54
  \manual{R-intro}{The ... argument},
57
  and \link[methods]{dotsMethods} for their use in formal (S4) methods.
55
  and \code{?\link[methods]{dotsMethods}} for its use in formal (S4) methods.
58
}
56
}
59
\examples{
57
\examples{
60
tst <- function(n, ...) ...elt(n)
58
tst <- function(n, ...) ...elt(n)
61
tst(1, pi=pi*0:1, 2:4) ## [1] 0.000000 3.141593
59
tst(1, pi=pi*0:1, 2:4) ## [1] 0.000000 3.141593
62
tst(2, pi=pi*0:1, 2:4) ## [1] 2 3 4
60
tst(2, pi=pi*0:1, 2:4) ## [1] 2 3 4