@thi.ng/sorted-map 1.1.23 → 1.1.24

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-13T16:03:11Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/api.d.ts CHANGED
@@ -15,7 +15,7 @@ export interface SortedMapOpts<K> {
15
15
  * comparisons.
16
16
  *
17
17
  * @defaultValue
18
- * [`compare()`](https://docs.thi.ng/umbrella/compare/functions/compare.html)
18
+ * [`compare`](https://docs.thi.ng/umbrella/compare/functions/compare.html)
19
19
  */
20
20
  compare: Comparator<K>;
21
21
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/sorted-map",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "Skiplist-based sorted map & set implementation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,16 +39,16 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.19",
43
- "@thi.ng/associative": "^7.0.23",
44
- "@thi.ng/checks": "^3.6.22",
45
- "@thi.ng/compare": "^2.4.11",
46
- "@thi.ng/random": "^4.1.10",
47
- "@thi.ng/transducers": "^9.2.17"
42
+ "@thi.ng/api": "^8.11.20",
43
+ "@thi.ng/associative": "^7.0.24",
44
+ "@thi.ng/checks": "^3.6.23",
45
+ "@thi.ng/compare": "^2.4.12",
46
+ "@thi.ng/random": "^4.1.11",
47
+ "@thi.ng/transducers": "^9.2.18"
48
48
  },
49
49
  "devDependencies": {
50
- "esbuild": "^0.24.2",
51
- "typedoc": "^0.27.6",
50
+ "esbuild": "^0.25.0",
51
+ "typedoc": "^0.27.7",
52
52
  "typescript": "^5.7.3"
53
53
  },
54
54
  "keywords": [
@@ -97,5 +97,5 @@
97
97
  ],
98
98
  "year": 2018
99
99
  },
100
- "gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n"
100
+ "gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n"
101
101
  }
package/sorted-set.d.ts CHANGED
@@ -12,8 +12,9 @@ import type { SortedSetOpts } from "./api.js";
12
12
  * {@link SortedSet.disj}
13
13
  *
14
14
  * Furthermore, this class implements the
15
- * [`ICopy`](https://docs.thi.ng/umbrella/api/interfaces/ICopy.html), IEmpty`,
16
- * [`ICompare`](https://docs.thi.ng/umbrella/api/interfaces/ICompare.html) and
15
+ * [`ICopy`](https://docs.thi.ng/umbrella/api/interfaces/ICopy.html),
16
+ * [`ICompare`](https://docs.thi.ng/umbrella/api/interfaces/ICompare.html),
17
+ * [`IEmpty`](https://docs.thi.ng/umbrella/api/interfaces/IEmpty.html) and
17
18
  * [`IEquiv`](https://docs.thi.ng/umbrella/api/interfaces/IEquiv.html)
18
19
  * interfaces defined by [`thi.ng/api`](https://thi.ng/api). The latter two
19
20
  * allow instances to be used as keys themselves in other data types defined in