Warning: session_start(): open(/var/lib/php/sessions/sess_6qmft0l1s28cm4oedub2o7ffi0, 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
// this is pretty bad, who needs this?
static S[] mapToStringArray(Map map) {
new L l;
for (O o : keys(map)) {
l.add(o);
l.add(map.get(o));
}
ret toStringArray(l);
}
// this is the good one
static S[] lambdaMapLike mapToStringArray(IF1 f, Iterable l) {
ret toStringArray(map(f, l));
}
static S[] mapToStringArray(Iterable l, IF1 f) {
ret mapToStringArray(f, l);
}