R/options.R

Defines functions .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 Dec. 11, 2021, 9:25 a.m.