static Collection collectionMinusSet(Collection l, Collection stuff) { if (empty(stuff)) ret l; Set set = asSet(stuff); Collection l2 = similarEmptyCollection(l); for (A a : l) if (!set.contains(a)) l2.add(a); ret l2; }