fable-core
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -344,9 +344,13 @@ declare const FSymbol: any; | ||
static add<T>(item: T, s: FSet<T>): FSet<T>; | ||
static addInPlace<T>(item: T, s: Set<T>): boolean; | ||
static remove<T>(item: T, s: FSet<T>): FSet<T>; | ||
static union<T>(set1: FSet<T> | Iterable<T>, set2: FSet<T> | Iterable<T>): FSet<T> | Set<T>; | ||
static union<T>(set1: FSet<T>, set2: FSet<T>): FSet<T>; | ||
static op_Addition: typeof FSet.union; | ||
static unionInPlace<T>(set1: Set<T>, set2: Iterable<T>): void; | ||
static unionMany<T>(sets: Iterable<FSet<T>>): FSet<T>; | ||
static difference<T>(set1: FSet<T> | Iterable<T>, set2: FSet<T> | Iterable<T>): FSet<T> | Set<T>; | ||
static difference<T>(set1: FSet<T>, set2: FSet<T>): FSet<T>; | ||
static op_Subtraction: typeof FSet.difference; | ||
static intersect<T>(set1: FSet<T> | Set<T>, set2: FSet<T> | Iterable<T>): FSet<T> | Set<T>; | ||
static differenceInPlace<T>(set1: Set<T>, set2: Iterable<T>): void; | ||
static intersect<T>(set1: FSet<T>, set2: FSet<T>): FSet<T>; | ||
static intersectInPlace<T>(set1: Set<T>, set2: Iterable<T>): void; | ||
static intersectMany<T>(sets: Iterable<FSet<T>>): FSet<T>; | ||
@@ -353,0 +357,0 @@ static isProperSubsetOf<T>(set1: FSet<T> | Set<T>, set2: FSet<T> | Set<T>): boolean; |
{ | ||
"name": "fable-core", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "Fable core lib & bindings for native JS objects, browser and node APIs", | ||
@@ -5,0 +5,0 @@ "main": "fable-core.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
4768692
16378