| Line 58... |
Line 58... |
| 58 |
changes are lost.
|
58 |
changes are lost.
|
| 59 |
|
59 |
|
| 60 |
If \code{envir} is \code{NULL} it is interpreted as an empty list so
|
60 |
If \code{envir} is \code{NULL} it is interpreted as an empty list so
|
| 61 |
no values could be found in \code{envir} and look-up goes directly to
|
61 |
no values could be found in \code{envir} and look-up goes directly to
|
| 62 |
\code{enclos}.
|
62 |
\code{enclos}.
|
| 63 |
|
63 |
|
| 64 |
\code{local} evaluates an expression in a local environment. It is
|
64 |
\code{local} evaluates an expression in a local environment. It is
|
| 65 |
equivalent to \code{evalq} except that its default argument creates a
|
65 |
equivalent to \code{evalq} except that its default argument creates a
|
| 66 |
new, empty environment. This is useful to create anonymous recursive
|
66 |
new, empty environment. This is useful to create anonymous recursive
|
| 67 |
functions and as a kind of limited namespace feature since variables
|
67 |
functions and as a kind of limited namespace feature since variables
|
| 68 |
defined in the environment are not visible from the outside.
|
68 |
defined in the environment are not visible from the outside.
|