Warning: session_start(): open(/var/lib/php/sessions/sess_3h446fbk9q5gupp3kj63eoqf90, 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 void forEach(Iterable l, IVF1 f) {
if (f != null && l != null) for (A a : l)
callF(f, a);
}
static void lambdaMapLike forEach(IVF1 f, Iterable l) {
forEach(l, f);
}
static void forEach(A[] l, IVF1 f) {
if (f != null && l != null) for (A a : l)
callF(f, a);
}
static void forEach(Map map, IVF2 f) {
for (A a, B b : map)
f.get(a, b);
}
}