R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.aion <- list(
    aion.verbose = interactive()
  )
  toset <- !(names(op.aion) %in% names(op))
  if(any(toset)) options(op.aion[toset])

  invisible()
}

Try the aion package in your browser

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

aion documentation built on June 8, 2025, 1:10 p.m.