static Set antiFilterToSet(Iterable c, IPred pred) { Set x = similarEmptySet(c); if (c != null) for (B o : c) if (!pred.get(o)) x.add(o); ret x; } static Set antiFilterToSet(IPred pred, Iterable c) { ret antiFilterToSet(c, pred); }