static L lambdaMapLike mapOverClone(IF1 f, Iterable l) { ret mapOverClone(l, f); } static L mapOverClone(Iterable l, IF1 f) { ret map(f, cloneList(l)); }