@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.
- package/dist/lib/browser/index.mjs +21 -0
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node/index.cjs +21 -0
- package/dist/lib/node/index.cjs.map +3 -3
- package/dist/lib/node/meta.json +1 -1
- package/dist/types/src/array.d.ts.map +1 -1
- package/dist/types/src/assign.d.ts.map +1 -1
- package/dist/types/src/callback.d.ts.map +1 -1
- package/dist/types/src/chunk-array.d.ts.map +1 -1
- package/dist/types/src/complex.d.ts +7 -1
- package/dist/types/src/complex.d.ts.map +1 -1
- package/dist/types/src/defer-function.d.ts.map +1 -1
- package/dist/types/src/defer.d.ts.map +1 -1
- package/dist/types/src/di-key.d.ts +2 -3
- package/dist/types/src/di-key.d.ts.map +1 -1
- package/dist/types/src/entry.d.ts.map +1 -1
- package/dist/types/src/for-each-async.d.ts.map +1 -1
- package/dist/types/src/join-tables.d.ts.map +1 -1
- package/dist/types/src/map-values.d.ts.map +1 -1
- package/dist/types/src/map.d.ts.map +1 -1
- package/dist/types/src/order.d.ts.map +1 -1
- package/dist/types/src/params.d.ts.map +1 -1
- package/dist/types/src/reducers.d.ts.map +1 -1
- package/dist/types/src/safe-await.d.ts.map +1 -1
- package/dist/types/src/sort.d.ts.map +1 -1
- package/dist/types/src/types.d.ts.map +1 -1
- package/dist/types/src/uint8array.d.ts +0 -1
- package/dist/types/src/uint8array.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/complex.ts +28 -0
|
@@ -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 {
|