UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

9 lines 272 B
/** * @public * Tests to see if all of the members of a set are the same. * * @remarks * See {@link setIsSetEqual}. */ export declare function setIsSetEqual<TItem>(a: ReadonlySet<TItem>, b: ReadonlySet<TItem>): boolean; //# sourceMappingURL=set-is-set-equal.d.ts.map