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 • 365 B
TypeScript
/**
* @public
* Returns those items in A not in B, and those items in B not in A.
*
* @remarks
* See {@link arraySymmetricDifference}.
*/
export declare function arraySymmetricDifference<TItem>(a: readonly TItem[], b: readonly TItem[], aSet?: ReadonlySet<TItem>, bSet?: ReadonlySet<TItem>): Set<TItem>;
//# sourceMappingURL=array-symmetric-difference.d.ts.map