Warning: session_start(): open(/var/lib/php/sessions/sess_qidr7gknk0lpe9d9nriuble9c6, 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 L repF(int n, O f, O... args) {
L l = emptyList(n);
for i to n:
l.add(callF(f, args));
ret l;
}
static L repF(O f, int n) {
ret repF(n, f);
}
static L lambdaMapLike repF(int n, IF0 f) {
L l = emptyList(n);
for i to n:
l.add(f.get());
ret l;
}
static L repF(IF0 f, int n) {
ret repF(n, f);
}