leigh
leigh13mo ago

async map

Is there anyway using the stdlib to map from one array to another array, with the work being done concurrently with async?
3 Replies
iuioiua
iuioiua13mo ago
Promise.all() - JavaScript | MDN
The Promise.all() static method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises fulfill (including when an empty iterable is passed), with an array of the fulfillment values. It rejects when any of the input's promises rejects, with this first rejection reason.
leigh
leigh13mo ago
Of course thanks. Is there any significance of Promise.all([...]) vs for await (const x of [...])?
iuioiua
iuioiua13mo ago
Promise.all() is parallel. for await …) is sequential.