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