val flows = listOf(a, b, c).map { flow { emit(null) it.collect { emit(it) } } } runBlocking { combine(flows) { it.filterNotNull() }.collect { println(it) } }
確定! 回上一頁