R/lapply-functions.R

Defines functions .lapply

## .lapply
##  wrapper for lapply with different defaults
##
## params:
##  see ?lapply
##
## returns:
##  see ?lapply
##
.lapply <- function(X, FUN, ..., mc.cores=1L) {
  parallel::mclapply(X, FUN, ..., mc.cores=mc.cores)
}

Try the MALDIquant package in your browser

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

MALDIquant documentation built on Sept. 11, 2024, 6:15 p.m.