static L replaceOrAdd(L l, A a, A b) { if (a == null) l.add(b); else replace(l, a, b); ret l; }