I know about the parallel collections in Scala. They are handy! However, I would like to iterate over the lines of a file that is too large for memory in parallel. I coul
Below helped me to achieve
source.getLines.toStream.par.foreach( line => println(line))