Warning: session_start(): open(/var/lib/php/sessions/sess_afb95orslr88g2nuksc1c4noe5, 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 Map mapNonNullsToValue(Iterable l, O f) {
ret mapNonNullsToValue(f, l);
}
static Map mapLike mapNonNullsToValue(O f, Iterable l) {
new HashMap map;
if (l != null) for (O o : l)
map.put(o, callF(f, o));
ret map;
}
static Map mapNonNullsToValue(Map map, IF2 f) {
new HashMap map2;
if (map != null) for (O key, value : map) {
O val = callF(f, key, value);
if (val != null)
map2.put(key, val);
}
ret map2;
}
static Map mapNonNullsToValue(Iterable l, IF1 f) {
ret mapNonNullsToValue(f, l);
}
static Map mapNonNullsToValue(IF1 f, Iterable l) {
ret mapNonNullsToValue(f, l);
}