map<E> method

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

Implementation

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