UNPKG

jsii

Version:

[![Join the chat at https://cdk.Dev](https://img.shields.io/static/v1?label=Slack&message=cdk.dev&color=brightgreen&logo=slack)](https://cdk.dev) [![All Contributors](https://img.shields.io/github/all-contributors/aws/jsii/main?label=%E2%9C%A8%20All%20Con

16 lines 470 B
export declare abstract class Sets { /** * Return the intersection of N sets */ static intersection<T>(...xss: Array<Set<T>>): Set<T>; /** * Return the union of N sets */ static union<T>(...xss: Array<Set<T>>): Set<T>; /** * Return the diff of 2 sets */ static diff<T>(xs: Set<T>, ys: Set<T>): Set<T>; static intersect<T>(xs: Set<T>, ys: Set<T>): Generator<T, void, unknown>; } //# sourceMappingURL=sets.d.ts.map