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; } static BigInteger minus(BigInteger a, BigInteger b) { ret a.subtract(b); }