static A peekPrevious(ListIterator it) { if (!it.hasPrevious()) null; A a = it.previous(); it.next(); ret a; }