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 281 B
/** * @public * Does not check value equality, only key. Takes items from A. * * See {@link mapIntersect}. */ export declare function mapIntersect<TKey, TIem>(a: ReadonlyMap<TKey, TIem>, b: ReadonlyMap<TKey, TIem>): Map<TKey, TIem>; //# sourceMappingURL=map-intersect.d.ts.map