static L minus(L a, O... b) { Set set = asSet(b); new L l; for (O s : a) if (!set.contains(s)) l.add(s); ret l; }