R/rm_all.R

Defines functions rm_all

Documented in rm_all

#' Removes R objects in the global environment without warning if R object doesn't exist
#' @param robj_names vector of length 1 of greater of R object names
#' @export

rm_all <-
        function(robj_names) {
                suppressWarnings(rm(list = robj_names, envir = globalenv()))
        }
patelm9/mirroR documentation built on Feb. 12, 2020, 2:41 p.m.