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

x/proc/mod3.ts>Enumerable#concurrentUnorderedMap

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

Map the sequence from one type to another, concurrently.

Items are iterated out of order. This allows maximum concurrency at all times, but the output order cannot be assumed to be the same as the input order.

This guarantees maximum concurrency whereas concurrentMap does not if the workload isn't balanced. Prefer concurrentUnorderedMap to concurrentMap for best/consistent performance.

Parameters

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

The mapping function.

Returns

An iterable of mapped values.