R/localOptions.R

Defines functions local_options

local_options <- function(...) {
  if (requireNamespace("withr", quietly = TRUE)) {
    return(withr::local_options(...))
  }
  old <- options(...)
  invisible(old)
}

Try the rxode2 package in your browser

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

rxode2 documentation built on July 28, 2026, 5:08 p.m.