Skip to main content
Module

x/proc/mod3.ts>Enumerable#concurrentMap

A better way to work with processes in Deno.
Latest
method Enumerable.prototype.concurrentMap
Re-export
import { Enumerable } from "https://deno.land/x/proc@0.21.9/mod3.ts";

Map the sequence from one type to another, concurrently.

Results are returned in order. The order of processing is concurrent, and therefore somewhat arbitrary.

Parameters

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

The mapping function.

Returns

An iterable of mapped values.