MapOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
map<
R> (Map1< T, R> transform) → Observable<R> -
Available on Observable<
Applies the given projection functionT> , provided by the MapOperator extensiontransform
to each value emitted by this Observable, and emits the resulting value. -
mapTo<
R> (R value) → Observable< R> -
Available on Observable<
Emits a constantT> , provided by the MapOperator extensionvalue
for each value emitted by this Observable.