map<R> method

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

Maps the changes into a Stream of R

Implementation

Stream<R> map<R>(R mapper(T data)) => values.map(mapper);