File tree Expand file tree Collapse file tree 1 file changed +0
-42
lines changed
Expand file tree Collapse file tree 1 file changed +0
-42
lines changed Original file line number Diff line number Diff line change @@ -110,46 +110,4 @@ export class ObservableSet<T> extends EventDispatcher<BaseEventMap> implements S
110110
111111 }
112112
113- union < U > ( other : ReadonlySetLike < U > ) : Set < T | U > {
114-
115- return new ObservableSet < T | U > ( this . data . union ( other ) ) ;
116-
117- }
118-
119- intersection < U > ( other : ReadonlySetLike < U > ) : Set < T & U > {
120-
121- return new ObservableSet < T & U > ( this . data . intersection ( other ) ) ;
122-
123- }
124-
125- difference < U > ( other : ReadonlySetLike < U > ) : Set < T > {
126-
127- return new ObservableSet < T > ( this . data . difference ( other ) ) ;
128-
129- }
130-
131- symmetricDifference < U > ( other : ReadonlySetLike < U > ) : Set < T | U > {
132-
133- return new ObservableSet < T | U > ( this . data . symmetricDifference ( other ) ) ;
134-
135- }
136-
137- isSubsetOf ( other : ReadonlySetLike < unknown > ) : boolean {
138-
139- return this . data . isSubsetOf ( other ) ;
140-
141- }
142-
143- isSupersetOf ( other : ReadonlySetLike < unknown > ) : boolean {
144-
145- return this . data . isSupersetOf ( other ) ;
146-
147- }
148-
149- isDisjointFrom ( other : ReadonlySetLike < unknown > ) : boolean {
150-
151- return this . data . isDisjointFrom ( other ) ;
152-
153- }
154-
155113}
You can’t perform that action at this time.
0 commit comments