@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 +7 -1
- package/README.md +1 -1
- package/package.json +11 -11
- package/sorted-set.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2025-03-
|
|
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
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/sorted-map)
|
|
6
6
|

|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/sorted-map",
|
|
3
|
-
"version": "1.1.
|
|
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.
|
|
43
|
-
"@thi.ng/associative": "^7.0.
|
|
44
|
-
"@thi.ng/checks": "^3.7.
|
|
45
|
-
"@thi.ng/compare": "^2.4.
|
|
46
|
-
"@thi.ng/random": "^4.1.
|
|
47
|
-
"@thi.ng/transducers": "^9.2.
|
|
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.
|
|
51
|
-
"typedoc": "^0.
|
|
52
|
-
"typescript": "^5.
|
|
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": "
|
|
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;
|