R/clear.memory.r

Defines functions clear.memory

Documented in clear.memory

#' @export
#' @title clear.memory
#' @description This function clears all data sets and functions defined in the current environment
#' @note taken from help of 'toupper' 
#' @author  unknown, \email{<unknown>@@dfo-mpo.gc.ca}
#' @export
clear.memory = function() {
  to.remove = ls()
  rm( list=to.remove )
}
AtlanticR/bio.utilities documentation built on June 21, 2020, 7:43 p.m.