R/save_rfun.R

Defines functions save_rfun

Documented in save_rfun

#' Save the function f for calling from fortran
#' @param f the R function to be called using `.Fortran`
#' @return TRUE, invisibly. 
#' @export save_rfun
save_rfun  <- function(f) {
    .Call("store_rfun", f, PACKAGE = "conTree")
    invisible(TRUE)
}

Try the conTree package in your browser

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

conTree documentation built on Nov. 22, 2023, 5:08 p.m.