findLast method

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

Emits the last item of this Observable matching the predicate, or emits an TooFewError otherwise.

Implementation

Observable<T> findLast(Predicate1<T> predicate) =>
    findLastOrElse(predicate, throwFunction0(TooFewError()));