We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It is: static intersect(sets: Iterable<Iterable<T>>): Set<T>; which is incorrect. It should be: static intersect(...sets: Array<Iterable<T>>): Set<T>;
static intersect(sets: Iterable<Iterable<T>>): Set<T>;
static intersect(...sets: Array<Iterable<T>>): Set<T>;
This matches the typescript type and the documentation.