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