zip

inline fun <T, R> Iterable<Mono<T>>.zip(crossinline combinator: (List<T>) -> R): Mono<R>

Merges this Iterable of Monos into a new Mono by combining them with combinator.

TODO Move to MonoExtensions.kt in next major version

Author

DoHyung Kim

Since

3.1


fun <R> zip(vararg monos: Mono<*>, combinator: (Array<*>) -> R): Mono<R>

Aggregates the given Monos into a new Mono.

Author

DoHyung Kim

Since

3.1