@thi.ng/sorted-map 1.1.23 → 1.1.25

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-19T20:59:58Z
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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 201 standalone projects, maintained as part
10
+ > This is one of 202 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
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.25",
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.21",
43
+ "@thi.ng/associative": "^7.0.25",
44
+ "@thi.ng/checks": "^3.6.24",
45
+ "@thi.ng/compare": "^2.4.13",
46
+ "@thi.ng/random": "^4.1.12",
47
+ "@thi.ng/transducers": "^9.2.19"
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": "bee617702ac61d093465b967f8f973dc566faa6b\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