export
From kimisc v0.4
by Kirill Müller
Exports to an environment
This function is a wrapper around export.list()
that
exports variables by their name to another environment.
Usage
export(..., target.env = .GlobalEnv)
Arguments
- ...
variables to be exported.
- target.env
The target environment. Use the global environment by default.
Value
Invisible NULL
.
References
See Also
Examples
# NOT RUN {
local({
newly.created.var <- 5
export(newly.created.var)
})
newly.created.var
rm(newly.created.var)
# }
Community examples
Looks like there are no examples yet.