Is there a way to check a `Channel` size (without ...
# coroutines
m
Is there a way to check a
Channel
size (without consuming the contents)? I'm currently counting
send()
and
receive()
calls manually.
d
This isn't possible sadly, you'll have to keep track.