If I have this:
val a = Array(...)
and I write
a.par.map(e => someFunc(e))
Will the resulting collection be in the same order as the non-parallel collection?
|
If I have this:
and I write
Will the resulting collection be in the same order as the non-parallel collection? |
|||||
|
|
Yes, but the function itself is executed without any particular order.
|
|||||||||
|
|
The parallel collections maintain all of the contracts of their non-parallel equivalents. On collections in which a With unordered collections, there is no guarantee that the result of a parallel operation will even have the same traversal order as its non-parallel equivalent. |
||||
|
|