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