switchAll method

Observable<T> switchAll()

Emits values only from the most recently received higher-order Observable.

Implementation

Observable<T> switchAll() => switchMap<T>(identityFunction);