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

x/asynciter/concurrent-map.ts>concurrentMap

Map, filter, reduce for AsyncIterables in Deno.
Go to Latest
function concurrentMap
import { concurrentMap } from "https://deno.land/x/asynciter@0.0.15/concurrent-map.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.