Warning: session_start(): open(/var/lib/php/sessions/sess_un0buvl98nge25c7f35vukegm6, 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 mapToLines(Map map) {
new L l;
for (O key : keys(map))
l.add(str(key) + " = " + str(map.get(key)));
ret l;
}
sS mapToLines(Map map, O f) {
ret lines(map(map, f));
}
sS mapLike mapToLines(O f, Map map) {
ret lines(map(map, f));
}
sS mapLike mapToLines(O f, Iterable l) {
ret lines(map(f, l));
}
static S mapLike mapToLines(Iterable l, IF1 f) {
ret mapToLines(f, l);
}