Warning: session_start(): open(/var/lib/php/sessions/sess_qidr7gknk0lpe9d9nriuble9c6, 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 S joinWith(S glue, Iterable strings) {
ret join(glue, strings);
}
static S joinWith(S glue, S... strings) {
ret join(glue, strings);
}
static S joinWith(Iterable strings) {
ret join(strings);
}
static S joinWith(Iterable strings, S glue) {
ret join(strings, glue);
}
static S joinWith(String[] strings) {
ret join(strings);
}
static S joinWith(S glue, Pair p) {
ret join(glue, p);
}