map<M> abstract method

ObservableView<M> map<M>(
  1. M mapper(
    1. T
    )
)

Returns a new ObservableView which is created by lazily calling mapper on this view's value, stream, and changes properties.

Disposing of the mapped view doesn't affect this view in any way.

Implementation

ObservableView<M> map<M>(M Function(T) mapper);