static HashSet mapLike mapToSet(O f, Iterable l) { ret mapToHashSet(f, l); } static HashSet mapToSet(IF1 f, Iterable l) { ret mapToSet((O) f, l); } static HashSet mapToSet(Iterable l, IF1 f) { ret mapToSet((O) f, l); }