map<T> method

Iterable<T> map<T>(
  1. T f(
    1. E
    )
)

Implementation

Iterable<T> map<T>(T Function(E) f) => _iterable.map(f);