Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/mod3.ts>Enumerable#concurrentMap

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
method Enumerable.prototype.concurrentMap
Re-export
import { Enumerable } from "https://deno.land/x/proc@0.20.9/mod3.ts";

Map the sequence from one type to another, concurrently.

Results are returned in order.

Parameters

mapFn: (item: T) => Promise<U>

The mapping function.

optional
concurrency: number

The maximum concurrency.

Returns

An iterable of mapped values.