Warning: session_start(): open(/var/lib/php/sessions/sess_nt445rcq13drc5812li8k82ut6, 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; } static A highestByFunction(O f, Iterable l) { ret highestByFunction(l, f); } static A highestByFunction(IF1 f, Iterable l) { ret highestByFunction(l, (O) f); }