regarding Sequences (which I totally overlooked, t...
# getting-started
b
regarding Sequences (which I totally overlooked, thanks @sitepodmatt): https://typealias.com/guides/kotlin-sequences-illustrated-guide/
c
Oh so operators don’t wait until the complete ‘list’ is done processing ? I thought sequences were just something lower level that weren’t really used. But they behave more like a stream then ?
k
Yes, they're pretty much Kotlin's version of Java's
Stream
without the parallel support.
b
that would be great to have a parallel support though…