wipe_clean {fritools} | R Documentation |
Remove All Objects From an Environment
Description
Wipe an environment clean. This is similar to the broom button in
RStudio
.
Usage
wipe_clean(environment = getOption("wipe_clean_environment"), all_names = TRUE)
Arguments
environment |
The environment that should be wiped clean. |
all_names |
See argument |
Value
A character vector containing the names of objects removed, but called for its side effect of removing all objects from the environment.
See Also
Other R memory functions:
memory_hogs()
,
wipe_tempdir()
Examples
an_object <- 1
wipe_clean()
ls()
e <- new.env()
assign("a", 1, envir = e)
assign("b", 1, envir = e)
ls(envir = e)
wipe_clean(envir = e)
ls(envir = e)
RUnit::checkIdentical(length(ls(envir = e)), 0L)
[Package fritools version 4.3.0 Index]