|
|
|
|
|
by smallnamespace
414 days ago
|
|
Because your code is actual running serially so no matter what there is an iteration order, and the order matters for performance even if your code does not care. For example if you literally don’t care about the order then your code can map over a default iterator that is efficient (DFS). |
|