val flow1: Flow = flowOf(1, 2, 3).conflate() val flow2: Flow = flowOf("A").conflate() combine(flow1, flow2) { a, b -> a.toString() + b }.collect { println(it) }