cast<R> method

Observable<R> cast<R>()

Casts the values from this Observable to R.

Implementation

Observable<R> cast<R>() => CastObservable<T, R>(this);