static L mapReversed(Iterable l, IF1 f) { ret map(reversed(l), f); } static L mapReversed(IF1 f, Iterable l) { ret mapReversed(l, f); }