export const newSet = (...iterables: Iterable[]): Set => new Set(iterables.flatMap(list => [...list]));