<@U3QQLJNG3> yes, for single-step operations just ...
# tornadofx
t
@tieskedh yes, for single-step operations just using collection operators is leaner. But if you have to do multiple steps like
myList.map { }.filter{ }.flatMap { }
you are going to be much better off using an
asSequence()
call first.