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