import { Enumerable } from "https://deno.land/x/proc@0.22.1/mod.ts";
Map the sequence from one type to another, concurrently.
Results are returned in order. The order of processing is concurrent, and therefore somewhat arbitrary.
Parameters
mapFn: (item: T) => Promise<U>
The mapping function.
optional
options: ConcurrentOptionsReturns
An iterable of mapped values.