@thi.ng/sorted-map 1.1.28 → 1.1.30

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-03-09T19:21:53Z
3
+ - **Last updated**: 2025-03-17T13:40:35Z
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.
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
11
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
12
  and/or version bumps of transitive dependencies.
13
13
 
14
+ ### [1.1.29](https://github.com/thi-ng/umbrella/tree/@thi.ng/sorted-map@1.1.29) (2025-03-10)
15
+
16
+ #### 🩹 Bug fixes
17
+
18
+ - update return types (TS5.8.2) ([541db4c](https://github.com/thi-ng/umbrella/commit/541db4c))
19
+
14
20
  ### [1.1.19](https://github.com/thi-ng/umbrella/tree/@thi.ng/sorted-map@1.1.19) (2025-01-14)
15
21
 
16
22
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <!-- This file is generated - DO NOT EDIT! -->
2
2
  <!-- Please see: https://github.com/thi-ng/umbrella/blob/develop/CONTRIBUTING.md#changes-to-readme-files -->
3
- # ![@thi.ng/sorted-map](https://media.thi.ng/umbrella/banners-20230807/thing-sorted-map.svg?a2ee1fc6)
3
+ # ![@thi.ng/sorted-map](https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/banners/thing-sorted-map.svg?a2ee1fc6)
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@thi.ng/sorted-map.svg)](https://www.npmjs.com/package/@thi.ng/sorted-map)
6
6
  ![npm downloads](https://img.shields.io/npm/dm/@thi.ng/sorted-map.svg)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/sorted-map",
3
- "version": "1.1.28",
3
+ "version": "1.1.30",
4
4
  "description": "Skiplist-based sorted map & set implementation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,17 +39,17 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.11.22",
43
- "@thi.ng/associative": "^7.0.28",
44
- "@thi.ng/checks": "^3.7.2",
45
- "@thi.ng/compare": "^2.4.14",
46
- "@thi.ng/random": "^4.1.13",
47
- "@thi.ng/transducers": "^9.2.22"
42
+ "@thi.ng/api": "^8.11.23",
43
+ "@thi.ng/associative": "^7.0.29",
44
+ "@thi.ng/checks": "^3.7.3",
45
+ "@thi.ng/compare": "^2.4.15",
46
+ "@thi.ng/random": "^4.1.14",
47
+ "@thi.ng/transducers": "^9.2.23"
48
48
  },
49
49
  "devDependencies": {
50
- "esbuild": "^0.25.0",
51
- "typedoc": "^0.27.7",
52
- "typescript": "^5.7.3"
50
+ "esbuild": "^0.25.1",
51
+ "typedoc": "^0.28.0",
52
+ "typescript": "^5.8.2"
53
53
  },
54
54
  "keywords": [
55
55
  "datastructure",
@@ -97,5 +97,5 @@
97
97
  ],
98
98
  "year": 2018
99
99
  },
100
- "gitHead": "55987d581e4985b1c3091ba6be3f9b53a0c5eeea\n"
100
+ "gitHead": "dfecb91b5b6a05db32d96f261e0c0ac6319240b9\n"
101
101
  }
package/sorted-set.d.ts CHANGED
@@ -48,7 +48,7 @@ export declare class SortedSet<T> extends Set<T> implements IEquivSet<T>, ICompa
48
48
  add(key: T): this;
49
49
  into(keys: Iterable<T>): this;
50
50
  clear(): void;
51
- first(): T;
51
+ first(): Maybe<T>;
52
52
  delete(key: T): boolean;
53
53
  disj(keys: Iterable<T>): this;
54
54
  forEach(fn: Fn3<Readonly<T>, Readonly<T>, Set<T>, void>, thisArg?: any): void;