findLastOrDefault method

Observable<T> findLastOrDefault(
  1. Predicate1<T> predicate,
  2. T value
)

Emits the last item of this Observable matching the predicate, or the provided default value otherwise.

Implementation

Observable<T> findLastOrDefault(Predicate1<T> predicate, T value) =>
    findLastOrElse(predicate, constantFunction0(value));