export function deduplication(iter: Iterable): Array { return Array.from(new Set(iter)); }