Open
Description
From @fdietze on November 10, 2011 16:21
It seems like there is no optimization for the parallelized collections in Scala.
This is optimized:
(0 until 1000).map
While this is not:
(0 until 1000).par.map
Whats the easiest way to get the parallelized collections optimized? The CL-Collections?
Thanks for this great compiler plugin. It helped me a lot speeding up my existing project.
Copied from original issue: nativelibs4java/nativelibs4java#199