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