Warning: session_start(): open(/var/lib/php/sessions/sess_c2390fsnpk0cash5s73j7i3dm0, 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 subList(L l, int startIndex) {
ret subList(l, startIndex, l(l));
}
static L subList(L l, int startIndex, int endIndex) {
startIndex = max(0, min(l(l), startIndex));
endIndex = max(0, min(l(l), endIndex));
if (startIndex > endIndex) ret litlist();
ret l.subList(startIndex, endIndex);
}
ifclass IntRange
static L subList(L l, IntRange r) {
ret subList(l, r.start, r.end);
}
endif