UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

9 lines (8 loc) 272 B
/** * Given both sets, this checks if they contain the same elements. */ export declare function setEquals<T>(a: ReadonlySet<T>, b: ReadonlySet<T>): boolean; /** * Returns `A – B` */ export declare function setMinus<T>(a: ReadonlySet<T>, b: ReadonlySet<T>): Set<T>;