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 251 B
/** * @public * returns items in A not in B. * * @remarks * See {@link setSetDifference}. */ export declare function setSetDifference<TItem>(a: ReadonlySet<TItem>, b: ReadonlySet<TItem>): TItem[]; //# sourceMappingURL=set-set-difference.d.ts.map