orangy
suspend fun <T> ReceiveChannel<T>.toList() = ArrayList<T>().also { list -> consumeEach { list.add(it) } }