R/Curry.R

Defines functions Curry

Documented in Curry

#' Functional programming utilities
#'
#' function from functional
#'
#' @keywords internal
Curry <- function(FUN, ...) {
  .orig <- list(...)
  function(...) do.call(FUN, c(.orig, list(...)))
}

Try the RBesT package in your browser

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

RBesT documentation built on June 8, 2025, 10:05 a.m.