Skip to main content
Module

x/asynciter/mod.ts>concurrentUnorderedMap

Map, filter, reduce for AsyncIterables in Deno.
Latest
function concurrentUnorderedMap
Re-export
import { concurrentUnorderedMap } from "https://deno.land/x/asynciter@0.0.18/mod.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.

Parameters

items: AsyncIterable<T>

An iterable collection.

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

The mapping function.

optional
concurrency: number

Returns

AsyncIterableIterator<U>

An iterator of mapped values.