amb

fun <T> Iterable<Maybe<T>>.amb(): Maybe<T>

Runs multiple Maybes and signals the events of the first one to terminate (disposing the rest).

Please refer to the corresponding RxJava document.


fun <T> amb(vararg sources: Maybe<T>): Maybe<T>

Runs multiple Maybes and signals the events of the first one to terminate (disposing the rest).

Please refer to the corresponding RxJava document.