map<R> method

Iterable<R> map<R>(
  1. R toElement(
    1. E e
    )
)

Implementation

Iterable<R> map<R>(R Function(E e) toElement) {
  return value.map<R>(toElement);
}