R/clear.R

Defines functions clear

Documented in clear

#' remove all object and detach all loaded packages
#'
#' @return nothing
#' @export
#'
#' @examples clear()
clear <- function(){
  remove_objects()
  detach()
}
yikeshu0611/onetree documentation built on Aug. 26, 2019, 9:18 p.m.