Are `Flow`s safe to pass between threads in Kotlin...
# multiplatform
s
Are `Flow`s safe to pass between threads in Kotlin/native?
e
It depends. By itself, the flow is stateless thus can be frozen and shared. But if you reference some mutable state from inside of the flow, then you cannot.