Re: Making the loop combinator fast !

2016-09-20 Thread Michael Haupt
Hi Rémi, I'm aware of sounding stereotypical, but the fix to JDK-8161211 should help with this. It's currently up for review. Best, Michael > Am 14.09.2016 um 23:51 schrieb Remi Forax : > > One idea i've got during the JVM Summit, > here is a code that implements the Stream.filter/map/reduce

Making the loop combinator fast !

2016-09-14 Thread Remi Forax
One idea i've got during the JVM Summit, here is a code that implements the Stream.filter/map/reduce operations using the new loop method handle, https://gist.github.com/forax/b5257dfac85e74335e02b5a6b95c9182 Currently, the code that use method handles is far slower than the java.util.stream.S