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 March 13, 2026, 5:06 p.m.