where method

Observable<T> where(
  1. Predicate1<T> predicate
)

Filter items emitted by the source Observable by only emitting those that satisfy a specified predicate.

Implementation

Observable<T> where(Predicate1<T> predicate) =>
    WhereObservable<T>(this, predicate);