_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: ochafik/nativelibs4java#199_