The R Project SVN R

Rev

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

Rev 88581 Rev 88604
Line 1... Line 1...
1
% File src/library/base/man/args.Rd
1
% File src/library/base/man/args.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-2022 R Core Team
3
% Copyright 1995-2025 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{args}
6
\name{args}
7
\alias{args}
7
\alias{args}
8
\title{Argument List of a Function}
8
\title{Argument List of a Function}
Line 23... Line 23...
23
  For a closure, a closure with identical formal argument list but an
23
  For a closure, a closure with identical formal argument list but an
24
  empty (\code{NULL}) body.
24
  empty (\code{NULL}) body.
25
 
25
 
26
  For a primitive (function), a closure with the documented usage and \code{NULL}
26
  For a primitive (function), a closure with the documented usage and \code{NULL}
27
  body.  Note that some primitives do not make use of named arguments
27
  body.  Note that some primitives do not make use of named arguments
28
  and match by position rather than name.
28
  and match by position rather than name. Some primitives, mainly those
-
 
29
  considered to be language elements, do not have a well-defined
-
 
30
  argument list; for those \code{NULL} is returned.
29
 
31
 
30
  \code{NULL} in case of a non-function.
32
  \code{NULL} in case of a non-function.
31
}
33
}
32
\details{
34
\details{
33
  This function is mainly used interactively to print the argument list
35
  This function is mainly used interactively to print the argument list