Do you know of any good guides for coroutines flow...
# getting-started
a
Do you know of any good guides for coroutines flow? https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/ Something more ELI5 for a noob like me
c
This page in the docs is a good place to start https://kotlinlang.org/docs/flow.html
c
The most ELI5 is “it's a
Sequence
but the lambdas can `suspend`”. It has a lot of bonus functionality (e.g. it knows when it's closed, so it can free its data source), but that's the gist of it.