static A popFirst(L l) { if (empty(l)) null; A a = first(l); l.remove(0); ret a; }