Is there an easy way to get everything what is cur...
# coroutines
a
Is there an easy way to get everything what is currently in a channel? For example if I do something like
channel.take(10)
and there are currently only 8 elements, I want to have those 8 elements instead of waiting until it hits 10
d
Maybe
poll
while it returns
true
?
a
Thats what I needed thanks @dave08