flatMapSetMerge

suspend fun <T, R> Iterable<T>.flatMapSetMerge(transform: suspend (T) -> Iterable<R>): Set<R>(source)

Shorthand for mapAsync(transform).flatMapSetConcat { it.toSet() }

Since

0.12.0