flatMapIterable

fun <T, R> Flow<T>.flatMapIterable(mapper: suspend (T) -> Iterable<R>): Flow<R>

Flattens a Flow of Iterable items into a Flow of individual items.

Return

A Flow of individual items.