Skip to main content
Module

x/asynciter/mod.ts>concurrentMap

Map, filter, reduce for AsyncIterables in Deno.
Latest
function concurrentMap
Re-export
import { concurrentMap } from "https://deno.land/x/asynciter@0.0.18/mod.ts";

Map the sequence from one type to another, concurrently.

Items are iterated in 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.