export type ReadableSet = { forEach(f: (item: X) => void): void; has(item: X): boolean; array(): X[]; };