Can we add `consumeEach` for channels with `Corout...
# coroutines
d
Can we add
consumeEach
for channels with
CoroutineContext
parameter? Now:
Copy code
launch(CommonPool) {
    channel.consumeEach { ... }
}
Propose:
Copy code
channel.consumeEach(CommonPool) { ... }
👍 1