R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op_matrixset <- list(
    matrixset.warn_class_change = TRUE
  )
  toset <- !(names(op_matrixset) %in% names(op))
  if (any(toset)) options(op_matrixset[toset])

  # cash_status <<- CashStatus$new()

  invisible()
}

Try the matrixset package in your browser

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

matrixset documentation built on April 3, 2025, 6:32 p.m.