map<T> method

Iterable<T> map<T>(
  1. T f(
    1. Operation
    )
)

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);
}