R/zzz.R

Defines functions .onLoad .onAttach .onUnload

.onLoad <- function(libname, pkgname) {
  .rfmlEnv$dbOk <- FALSE

}

.onAttach <- function(libname, pkgname) {
  packageStartupMessage("rfml package")
}

.onUnload <- function(libpath) {
  # clean up the enviroment
  #rm(list = ls(), envir = rfml.env)

}

Try the rfml package in your browser

Any scripts or data that you put into this service are public.

rfml documentation built on May 2, 2019, 3:01 a.m.