Is there something like `emptyReceiveChannel()` (l...
# coroutines
m
Is there something like
emptyReceiveChannel()
(like
emptyList()
for
List
)? Example impl:
Copy code
fun <E> CoroutineScope.emptyReceiveChannel() =
	produce<E> {  }