static L takeLast(L l, int n) { return newSubList(l, l(l)-n); } static L takeLast(int n, L l) { ret takeLast(l, n); }