Hi, can I trust the order of mapped tasks? As in i...
# ask-community
p
Hi, can I trust the order of mapped tasks? As in if I have a list
l1 = [a, b, c]
and I generate
l2 = task_name.map(l1)
, can I trust that element 0 in
l2
derives from element 0 from
l1
?
k
Yes order is guaranteed which is why you can’t map over sets. There should be no problem as long as the list lengths are the same throughout the map calls
😎 1
p
cool, thank you Kevin!