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

x/better_iterators/mod.ts>LazyAsync#mapParUnordered

Chainable iterators (sync and async) for TypeScript, with support for opt-in, bounded parallelism
Go to Latest
method LazyAsync.prototype.mapParUnordered
import { LazyAsync } from "https://deno.land/x/better_iterators@v1.3.0/mod.ts";

A version of mapPar that does not enforce ordering, so doesn't suffer from head-of-line blocking.

Parameters

max: number
transform: Transform<T, Promise<Out>>