LastOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
findLast(
Predicate1< T> predicate) → Observable<T> -
Available on Observable<
Emits the last item of this Observable matching theT> , provided by the LastOperator extensionpredicate
, or emits an TooFewError otherwise. -
findLastOrDefault(
Predicate1< T> predicate, T value) → Observable<T> -
Available on Observable<
Emits the last item of this Observable matching theT> , provided by the LastOperator extensionpredicate
, or the provided defaultvalue
otherwise. -
findLastOrElse(
Predicate1< T> predicate, Map0<T> callback) → Observable<T> -
Available on Observable<
Emits the last item of this Observable matching theT> , provided by the LastOperator extensionpredicate
, or evaluate the providedcallback
otherwise. -
last(
) → Observable< T> -
Available on Observable<
Emits the last item of this Observable, or emits an TooFewError otherwise.T> , provided by the LastOperator extension -
lastOrDefault(
T value) → Observable< T> -
Available on Observable<
Emits the last item of this Observable, or the provided defaultT> , provided by the LastOperator extensionvalue
otherwise. -
lastOrElse(
Map0< T> callback) → Observable<T> -
Available on Observable<
Emits the last item of this Observable, or evaluate the providedT> , provided by the LastOperator extensioncallback
otherwise.