Warning: session_start(): open(/var/lib/php/sessions/sess_qb9t33qefl6vb43a72l2hisvdu, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static A highestByFunction(Iterable l, O f) {
A best = null;
O bestValue = null;
if (l != null) for(A a : l) {
O val = callF(f, a);
if (best == null || cmp(val, bestValue) > 0) {
best = a;
bestValue = val;
}
}
ret best;
}