static LinkedHashSet mapToLinkedHashSet(O f, Cl l) { LinkedHashSet x = new(l(l)); if (l != null) for (O o : l) x.add(callF(f, o)); ret x; } static LinkedHashSet mapToLinkedHashSet(O f, Iterable l) { new LinkedHashSet x; if (l != null) for (O o : l) x.add(callF(f, o)); ret x; } static LinkedHashSet lambdaMapLike mapToLinkedHashSet(IF1 f, Iterable l) { ret mapToLinkedHashSet((O) f, l); }