We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99bb9fe commit e761a08Copy full SHA for e761a08
src/main/kotlin/rx/lang/kotlin/observables.kt
@@ -106,3 +106,5 @@ public inline fun <T> Observable<T>.subscribeWith( body : FunctionSubscriberModi
106
modifier.body()
107
return subscribe(modifier.subscriber)
108
}
109
+
110
+public fun <T> Observable<Observable<T>>.switchOnNext(): Observable<T> = Observable.switchOnNext(this)
0 commit comments