https://kotlinlang.org logo
t

tieskedh

07/26/2017, 7:59 PM
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
?