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