Also, separately, is there any reason there are no...
# coroutines
k
Also, separately, is there any reason there are no Flow integrations with
select
?
e
I'm not sure it would make sense on a Flow. on a particular subscriber to a Flow sure, but I think that's already doable with
Copy code
val channel = produce {
    flow.collect { send(it) }
}
select {
    channel.onReceiveCatching {