The type of the input array items.
The array of data to map over, or a promise that resolves to one.
An async function applied to each element, producing a mapped value.
Optionaloptions: MapOptions<R>Configuration options, including cancellation token and concurrency limit.
A cancellable handle that resolves to an array of mapped values.
Maps over an array of data concurrently, applying an asynchronous callback to each element. Allows controlling the maximum concurrency of the mapping operations.
The type of the input array items.
The array of data to map over, or a promise that resolves to one.
An async function applied to each element, producing a mapped value.
Optionaloptions: MapOptions<R>Configuration options, including cancellation token and concurrency limit.
A cancellable handle that resolves to an array of mapped values.
Maps over an array of data concurrently, applying an asynchronous callback to each element. Allows controlling the maximum concurrency of the mapping operations.