What happens to a `select` clause if all `onReceiv...
# coroutines
r
What happens to a
select
clause if all
onReceive
clauses have been canceled?
s
Any
onReceive
clause fails immediately if the underlying channel is closed/cancelled. It doesn't prefer selecting channels which are still open, if that's what you're asking.
l
@reactormonk I'd try and write the result back here