Warning: session_start(): open(/var/lib/php/sessions/sess_s95i1g4it5u06jeqmu084q28pk, 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
// f must return a list
static L concatMap(O f, Iterable l) {
ret concatLists(map(f, l));
}
static L concatMap(Iterable l, O f) {
ret concatMap(f, l);
}
static L concatMap(O f, O[] l) {
ret concatLists(map(f, l));
}
static L concatMap(O[] l, O f) {
ret concatMap(f, l);
}
static > L concatMap(Iterable l, IF1 f) {
ret concatMap(l, (O) f);
}