Applies the function f to each element in the list and returns a new iterable with elements of type T0.
f
T0
@override Iterable<T0> map<T0>(T0 Function(T) f) => _items.map(f);