tieskedh
09/10/2017, 9:00 PMasSequence().filter(predicate).toList().asSequence().foreach{}
I get the idea, but I believe kotlin does not use sequences in parallel
Having said that, I think there is no need for a sequence. This means that the same result can be reached by using filter(predicate).foreach{}
Am I right?