static A popLast_slow(Cl l) { if (l instanceof L) ret popLast((L) l); if (empty(l)) null; A a = last(iterator(l)); l.remove(a); ret a; }