Warning: session_start(): open(/var/lib/php/sessions/sess_uaojqguh8fs2hm8lfbtnrofgs6, 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 lowestByField(Iterable l, S field) {
A lowest = null;
O lowestValue = null;
for (A a : unnull(l)) {
O val = getOpt(a, field);
if (lowest == null || cmp(val, lowestValue) < 0) {
lowest = a;
lowestValue = val;
}
}
ret lowest;
}
static A mapMethodLike lowestByField(S field, Iterable l) {
ret lowestByField(l, field);
}