map<T> method
Returns a new lazy Iterable with elements that are created by calling f on each element of this Iterable in iteration order.
Convenience method
Implementation
Iterable<T> map<T>(T Function(Operation) f) {
return operations.map<T>(f);
}