export function some( set: Set, predicate: (element: T) => boolean ): boolean { return Array.from(set).some(predicate); }