map<T> method

  1. @override
Iterable<T> map<T>(
  1. T f(
    1. E e
    )
)
override

Returns a new lazy Iterable with elements that are created by calling f on each element of this PbListBase in iteration order.

Implementation

@override
Iterable<T> map<T>(T Function(E e) f) => _wrappedList.map<T>(f);