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) [![Build Status](https://github.com/aws/jsii-compiler/workflows/build/badge.svg)](https://github.com/aws/jsii

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