static L map(Iterable l, O f) { ret map(f, l); } static L mapLike map_curry(O f, O arg, Iterable l) { ret map(curry(f, arg), l); }