Returns a new lazy Iterable of Type by applying the transformation function.
Shorthand for Iterable<T>.map<T>(f);
Iterable<T>.map<T>(f);
Iterable<T> as<T>(T f(E e)) => map<T>(f);