Warning: session_start(): open(/var/lib/php/sessions/sess_odeqca67iqf91fm70mnh39lc9d, 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 Substring joinSubstringObjects(Iterable l) {
Iterator it = iterator(l);
if (!it.hasNext()) null;
Substring s = it.next();
while (it.hasNext()) {
Substring b = it.next();
if (s.s != b.s) fail("Substrings have different base string");
if (s.endIndex() != b.startIndex()) fail("Substrings don't fit");
s = Substring(s.s, s.startIndex(), s.length()+b.length());
}
ret s;
}