static L cloneDropFirst(int n default 1, L l) { ret cloneSubList(l, n); } static L cloneDropFirst(L l, int n) { ret cloneDropFirst(n, l); }