ID EN
Multiprocessing

imap_unordered

Python 3.11

The same as imap() except that the ordering of the results from the returned iterator should be considered arbitrary. (Only when there is only one worker process is the order guaranteed to be “correct”.)

Syntax

PYTHON
imap_unordered(func, iterable[, chunksize])

See Also

imap()