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 defaultvalueotherwise.
- 
  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 providedcallbackotherwise.
- 
  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 extensionvalueotherwise.
- 
  lastOrElse(Map0< T> callback) → Observable<T> 
- 
      Available on Observable< Emits the last item of this Observable, or evaluate the providedT> , provided by the LastOperator extensioncallbackotherwise.