Warning: session_start(): open(/var/lib/php/sessions/sess_tjh11s4ap24k3sbqhijahfb6e3, 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
sbool all(O pred, Iterable l) {
if (l != null) for (O o : l) if (!isTrue(callF(pred, o))) false;
true;
}
static bool all(Iterable l, IF1 f) {
if (l != null) for (A a : l) if (!f.get(a)) false;
true;
}
static bool lambdaMapLike all(IF1 f, Iterable l) {
ret all(l, f);
}