flattenConcat

fun <T> Flow<Flow<T>>.flattenConcat(): Flow<T>

Flattens the given flow of flows into a single flow in a sequential manner, without interleaving nested flows.

Inner flows are collected by this operator sequentially.

Sources

Link copied to clipboard