map<R> method

Observable<R> map<R>(
  1. Map1<T, R> transform
)

Applies the given projection function transform to each value emitted by this Observable, and emits the resulting value.

Implementation

Observable<R> map<R>(Map1<T, R> transform) =>
    MapObservable<T, R>(this, transform);