Map<X> method

Iterable<X> Map<X>(
  1. X toElement(
    1. E e
    )
)

Query-like Projects matching elements using toElement.

Implementation

Iterable<X> Map<X>(X Function(E e) toElement)
  => _resolve().map(toElement);