static <T,R> List<R> |
ParallelForEach.loop(Collection<T> collection,
Function<T,R> fn) |
static <T,R> List<R> |
ParallelForEach.loop(Collection<T> collection,
Function<T,R> fn,
int logModulo) |
static <T,R> List<R> |
ParallelForEach.loop(Collection<T> collection,
int numThreads,
Function<T,R> fn) |
static <T,R> List<R> |
ParallelForEach.loop(Collection<T> collection,
int numThreads,
Function<T,R> fn,
int logModulo) |
static <T,R> List<R> |
ParallelForEach.range(int from,
int to,
Function<Integer,R> fn) |
static <T,R> List<R> |
ParallelForEach.range(int from,
int to,
int numThreads,
Function<Integer,R> fn) |