Warning: session_start(): open(/var/lib/php/sessions/sess_ios59u7n992oqb6fu22se3712f, 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 > Set concatMapToSet(Iterable l, IF1 f) {
new Set set;
if (l != null)
for (a : l)
addAll(set, f.get(a));
ret set;
}
static > Set lambdaMapLike concatMapToSet(IF1 f, Iterable l) {
ret concatMapToSet(l, f);
}
static > Set lambdaMapLike concatMapToSet(IF1 f, A[] l) {
new Set set;
if (l != null)
for (a : l)
addAll(set, f.get(a));
ret set;
}