map<E> method

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

Implementation

Iterable<E> map<E>(E f(T item)) => _list.map(f);