whereType<R> method

Observable<R> whereType<R>()

Filter items emitted by the source Observable by only emitting those that are of the specified type.

Implementation

Observable<R> whereType<R>() => WhereTypeObserver<T, R>(this);