static Map filterMap(Map map, O f) { Map m2 = similarEmptyMap(map); for (A a : keys(map)) { B b = map.get(a); if (isTrue(callF(f, a, b))) m2.put(key, b); } ret m2; }