Warning: session_start(): open(/var/lib/php/sessions/sess_9ph5dcja7qi8m0rvci8omi4l1r, 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 foldl_noSeed(F2 f, Iterable l) {
ret foldl_noSeed((O) f, l);
}
static A foldl_noSeed(IF2 f, Iterable l) {
ret foldl_noSeed((O) f, l);
}
static A mapLike foldl_noSeed(O f, Iterable l) {
Iterator it = iterator(l);
if (!it.hasNext()) null;
A a = it.next();
while (it.hasNext())
a = (A) callF(f, a, it.next());
ret a;
}