Warning: session_start(): open(/var/lib/php/sessions/sess_tjqm1nv27olfd87d8nl8k0tj45, 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
// does not store null values
static MultiMap lambdaMapLike multiMapIndex(IF1 f, Iterable l) {
new MultiMap map;
fOr (A a : l) {
B val = f.get(a);
if (val != null)
map.put(val, a);
}
ret map;
}
static MultiMap lambdaMapLike multiMapIndex(Iterable l, IF1 f) {
ret multiMapIndex(f, l);
}