Warning: session_start(): open(/var/lib/php/sessions/sess_pofert8bqokt1m5lbupju1fnqa, 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 map(Iterable l, O f) {
ret map(f, l);
}
static L map(O f, Iterable l) {
new L x;
O mc = mc();
for (O o : unnull(l))
x.add(callFunction(f, o));
ret x;
}
static L map(O f, O[] l) {
ret map(f, asList(l));
}
static L map(O f, Map map) {
ret map(map, f);
}
static L map(Map map, O f) {
new L x;
for (O _e : map.entrySet()) {
Map.Entry e = (Map.Entry) _e;
x.add(callFunction(f, e.getKey(), e.getValue()));
}
ret x;
}