Warning: session_start(): open(/var/lib/php/sessions/sess_2ebfqq851q7okkuhrhdksied7r, 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 subListOfCollection(Collection c, int from, int to) {
int n = l(c);
to = min(to, n);
if (from >= n || to <= from) ret ll();
L l = new L(to-from);
Iterator it = iterator(c);
repeat from { it.next(); }
while (from++ < to) l.add(it.next());
ret l;
}