Hello everybody. I'm new in this slack, and the la...
# tornadofx
t
Hello everybody. I'm new in this slack, and the last couple of days I made a deep dive in the code. I have a question about a part of the code I don't understand: what is the purpose of the function chain:
backingList.asSequence().filter(predicate).asSequence().toList().asSequence().forEach
over
backingList.asSequence().filter(predicate).forEach
?