Ouail Bendidi
06/21/2023, 12:53 PMtask.map
keep order ? (Will the list of generated futures have the same order as the mapped over argument ?)Ouail Bendidi
06/21/2023, 1:00 PMI will start and take arguments anywhere in the provided listMy opinion is that since
my_task.map([1, 2, 3])
is normally equivalent to `[my_task.submit(i) for i in range(1, 4)]`it should keep the order of output 🤔
(I just want to make sure since it's not mentioned anywhere in the docs)Ouail Bendidi
06/21/2023, 1:01 PMTim Galvin
06/21/2023, 1:22 PM