Enumerable.prototype.concurrentMap<U>(mapFn: (item: T) => Promise<U>,options?: ConcurrentOptions,): Enumerable<U>
Map the sequence from one type to another, concurrently.
Results are returned in order. The order of processing is concurrent, and therefore somewhat arbitrary.
mapFn: (item: T) => Promise<U>
The mapping function.
optional
options: ConcurrentOptions
An iterable of mapped values.