map<S> method

  1. @override
GgValueStream<S> map<S>(
  1. S mapping(
    1. T
    )
)
override

Returns a new stream which delivers the elements of the original stream mapped using the mapping function.

Implementation

@override
GgValueStream<S> map<S>(S Function(T) mapping) =>
    _MappedValueStream(this, mapping);