R/eem_lapply.R

Defines functions eem_lapply

eem_lapply <- function(list, fun, ...) {
  res <- lapply(list, fun, ...)
  class(res) <- "eemlist"

  return(res)
}

Try the eemR package in your browser

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

eemR documentation built on April 4, 2025, 2:38 a.m.