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.

8 lines 304 B
/** * @public * Returns those items in A not in B, and those items in B not in A. * @remarks * See {@link setSymmetricDifference}. */ export declare function setSymmetricDifference<TItem>(a: ReadonlySet<TItem>, b: ReadonlySet<TItem>): TItem[]; //# sourceMappingURL=set-symmetric-difference.d.ts.map