map<R> abstract method

Stream<R> map<R>(
  1. R mapper(
    1. T data
    )
)
override

Maps the changes into a Stream of R

Implementation

Stream<R> map<R>(R mapper(T data));