@calcit/procs 0.8.49 → 0.8.50
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/lib/calcit-data.mjs +3 -0
- package/lib/package.json +2 -2
- package/package.json +2 -2
- package/ts-src/calcit-data.mts +4 -0
package/lib/calcit-data.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { overwriteHashGenerator, valueHash, mergeValueHash } from "@calcit/ternary-tree";
|
|
2
2
|
import { overwriteComparator } from "@calcit/ternary-tree";
|
|
3
3
|
import { overwriteMapComparator } from "./js-map.mjs";
|
|
4
|
+
import { disableListStructureCheck } from "@calcit/ternary-tree";
|
|
4
5
|
import { CalcitRecord, fieldsEqual } from "./js-record.mjs";
|
|
5
6
|
import { CalcitMap, CalcitSliceMap } from "./js-map.mjs";
|
|
6
7
|
import { _$n_compare } from "./js-primes.mjs";
|
|
@@ -620,3 +621,5 @@ export let _$n__$e_ = (x, y) => {
|
|
|
620
621
|
overwriteComparator(_$n__$e_);
|
|
621
622
|
overwriteMapComparator(_$n__$e_);
|
|
622
623
|
overwriteSetComparator(_$n__$e_);
|
|
624
|
+
/** special trick for disabling ternary tree list check */
|
|
625
|
+
export let disable_list_structure_check_$x_ = disableListStructureCheck;
|
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.50",
|
|
4
4
|
"main": "./lib/calcit.procs.mjs",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/node": "^20.11.28",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://github.com/calcit-lang/calcit"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@calcit/ternary-tree": "0.0.
|
|
24
|
+
"@calcit/ternary-tree": "0.0.24",
|
|
25
25
|
"@cirru/parser.ts": "^0.0.6",
|
|
26
26
|
"@cirru/writer.ts": "^0.1.5"
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calcit/procs",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.50",
|
|
4
4
|
"main": "./lib/calcit.procs.mjs",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/node": "^20.11.28",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://github.com/calcit-lang/calcit"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@calcit/ternary-tree": "0.0.
|
|
24
|
+
"@calcit/ternary-tree": "0.0.24",
|
|
25
25
|
"@cirru/parser.ts": "^0.0.6",
|
|
26
26
|
"@cirru/writer.ts": "^0.1.5"
|
|
27
27
|
}
|
package/ts-src/calcit-data.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Hash, overwriteHashGenerator, valueHash, mergeValueHash } from "@calcit/ternary-tree";
|
|
2
2
|
import { overwriteComparator, initTernaryTreeMap } from "@calcit/ternary-tree";
|
|
3
3
|
import { overwriteMapComparator } from "./js-map.mjs";
|
|
4
|
+
import { disableListStructureCheck } from "@calcit/ternary-tree";
|
|
4
5
|
|
|
5
6
|
import { CalcitRecord, fieldsEqual } from "./js-record.mjs";
|
|
6
7
|
import { CalcitMap, CalcitSliceMap } from "./js-map.mjs";
|
|
@@ -662,3 +663,6 @@ export let _$n__$e_ = (x: CalcitValue, y: CalcitValue): boolean => {
|
|
|
662
663
|
overwriteComparator(_$n__$e_);
|
|
663
664
|
overwriteMapComparator(_$n__$e_);
|
|
664
665
|
overwriteSetComparator(_$n__$e_);
|
|
666
|
+
|
|
667
|
+
/** special trick for disabling ternary tree list check */
|
|
668
|
+
export let disable_list_structure_check_$x_ = disableListStructureCheck;
|