R/options.R

Defines functions .joptions

Documented in .joptions

.joptions <- function(...) {
  l <- list(...)
  if (length(l)==0) return(list())
  if ("jni.cache" %in% names(l)) {
    v <- l[["jni.cache"]]
    if (!is.logical(v) || length(v)!=1)
      stop("jni.cache must be a logical vector of length 1")
    .C(RuseJNICache,v)
    invisible(NULL)
  }
}

Try the rJava package in your browser

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

rJava documentation built on May 29, 2024, 5:26 a.m.