static A highestBy(Iterable l, O f) { ret highestByFunction(l, f); } static A highestBy(O f, Iterable l) { ret highestByFunction(f, l); } static A lambdaMapLike highestBy(Iterable l, IF1 f) { ret highestByFunction(f, l); } static A lambdaMapLike highestBy(IF1 f, Iterable l) { ret highestByFunction(f, l); }