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