The R Project SVN R

Rev

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

Rev 68948 Rev 78802
Line 1... Line 1...
1
% File src/library/base/man/eapply.Rd
1
% File src/library/base/man/eapply.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-2011 R Core Team
3
% Copyright 1995-2020 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{eapply}
6
\name{eapply}
7
\title{Apply a Function Over Values in an Environment}
7
\title{Apply a Function Over Values in an Environment}
8
\usage{
8
\usage{
Line 25... Line 25...
25
  \code{eapply} applies \code{FUN} to the named values from an
25
  \code{eapply} applies \code{FUN} to the named values from an
26
  \code{\link{environment}} and returns the results as a list.  The user
26
  \code{\link{environment}} and returns the results as a list.  The user
27
  can request that all named objects are used (normally names that begin
27
  can request that all named objects are used (normally names that begin
28
  with a dot are not).  The output is not sorted and no enclosing
28
  with a dot are not).  The output is not sorted and no enclosing
29
  environments are searched.
29
  environments are searched.
30
 
-
 
31
  This is a \link{primitive} function.
-
 
32
}
30
}
33
\value{
31
\value{
34
  A named (unless \code{USE.NAMES = FALSE}) list.  Note that the order of
32
  A named (unless \code{USE.NAMES = FALSE}) list.  Note that the order of
35
  the components is arbitrary for hashed environments.
33
  the components is arbitrary for hashed environments.
36
}
34
}