How do I receive all elements from a `Channel` , w...
# coroutines
m
How do I receive all elements from a
Channel
, whether it's 0 or more, not suspending either way?
a
.poll()
will do the trick so long as the channel element type isn't nullable
🙏 1