@hyperlane-xyz/utils
Version:
General utilities and types for the Hyperlane network
5 lines • 323 B
TypeScript
export declare function difference<T>(a: Set<T>, b: Set<T>): Set<T>;
export declare function symmetricDifference<T>(a: Set<T>, b: Set<T>): Set<T>;
export declare function setEquality<T>(a: Set<T>, b: Set<T>): boolean;
export declare function intersection<T>(a: Set<T>, b: Set<T>): Set<T>;
//# sourceMappingURL=sets.d.ts.map