map<T> method

Iterable<T> map<T>(
  1. T toElement(
    1. T e
    )
)
override

This is a simple interface to the map method of the list

Implementation

Iterable<T> map<T>(toElement) {
  return _items.map(toElement);
}