Diego
val flowA: Flow<String>
suspend fun funB(): Int
combine(
flowA,
flow {emit(funB())}
) { a, b ->
...
}
Nick Allen
::funB.asFlow()
A modern programming language that makes developers happier.