R/zzz.R

Defines functions getmicroEnv putmicroEnv microEnv

# Prepare package internal namespace
.microEnv <- new.env(parent = emptyenv())
microEnv <- function() .microEnv
putmicroEnv <- function(x, value) assign(x, value, envir = microEnv())
getmicroEnv <- function(x, mode = "any") get0(x, envir = microEnv(), mode = mode, inherits = FALSE)

Try the microclass package in your browser

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

microclass documentation built on Aug. 28, 2020, 5:08 p.m.