<@U0HUJ25V1> again about: ```asSequence().filter(p...
# tornadofx
t
@thomasnield again about:
Copy code
asSequence().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
Copy code
filter(predicate).foreach{}
Am I right?