Paul Woitaschek
concatWith
kotlin fun <T> Flow<T>.concatWith(other: Flow<T>): Flow<T> { return flow { collect { emit(it) } other.collect { emit(it) } } }
octylFractal
flattenConcat
dewildte
merge
vararg
Flow<T>
A modern programming language that makes developers happier.