if I call `lauch` inside a `channelFlow`, what cor...
# coroutines
f
if I call
lauch
inside a
channelFlow
, what coroutine scope is used for that
channelFlow
? The one that collects from the
channelFlow
?
l
The one of
channelFlow
that is kind of a child of the one that collects the flow.
f
thank you