@dxos/util 0.6.6 → 0.6.7-staging.1976059

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -326,6 +326,27 @@ var ComplexSet = class {
326
326
  get [Symbol.toStringTag]() {
327
327
  return "ComplexSet";
328
328
  }
329
+ union(other) {
330
+ throw new Error("Method not implemented.");
331
+ }
332
+ intersection(other) {
333
+ throw new Error("Method not implemented.");
334
+ }
335
+ difference(other) {
336
+ throw new Error("Method not implemented.");
337
+ }
338
+ symmetricDifference(other) {
339
+ throw new Error("Method not implemented.");
340
+ }
341
+ isSubsetOf(other) {
342
+ throw new Error("Method not implemented.");
343
+ }
344
+ isSupersetOf(other) {
345
+ throw new Error("Method not implemented.");
346
+ }
347
+ isDisjointFrom(other) {
348
+ throw new Error("Method not implemented.");
349
+ }
329
350
  };
330
351
  var makeSet = (projection) => {
331
352
  return class BoundComplexSet extends ComplexSet {