@thi.ng/heaps
Advanced tools
Comparing version 2.1.91 to 2.1.92
# Change Log | ||
- **Last updated**: 2025-01-29T16:25:48Z | ||
- **Last updated**: 2025-02-13T16:03:11Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -5,0 +5,0 @@ |
@@ -11,6 +11,7 @@ import type { ICopy, IEmpty, IStack } from "@thi.ng/api"; | ||
* By default, implements min-heap ordering and uses | ||
* [`compare()`](https://docs.thi.ng/umbrella/compare/functions/compare.html). | ||
* The arity `d` must be >= 2 (default: 4). If `d=2`, the default binary | ||
* [`compare`](https://docs.thi.ng/umbrella/compare/functions/compare.html). The | ||
* arity `d` must be >= 2 (default: 4). If `d=2`, the default binary | ||
* {@link Heap} implementation will be faster. | ||
* | ||
* Reference: | ||
* https://en.wikipedia.org/wiki/D-ary_heap | ||
@@ -17,0 +18,0 @@ */ |
{ | ||
"name": "@thi.ng/heaps", | ||
"version": "2.1.91", | ||
"version": "2.1.92", | ||
"description": "Various heap implementations for arbitrary values and with customizable ordering", | ||
@@ -43,9 +43,9 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.11.19", | ||
"@thi.ng/compare": "^2.4.11", | ||
"@thi.ng/equiv": "^2.1.75" | ||
"@thi.ng/api": "^8.11.20", | ||
"@thi.ng/compare": "^2.4.12", | ||
"@thi.ng/equiv": "^2.1.76" | ||
}, | ||
"devDependencies": { | ||
"esbuild": "^0.24.2", | ||
"typedoc": "^0.27.6", | ||
"esbuild": "^0.25.0", | ||
"typedoc": "^0.27.7", | ||
"typescript": "^5.7.3" | ||
@@ -96,3 +96,3 @@ }, | ||
}, | ||
"gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n" | ||
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n" | ||
} |
@@ -10,2 +10,3 @@ import type { IClear, ICopy, IEmpty, IInto, ILength, Pair, Predicate, Predicate2 } from "@thi.ng/api"; | ||
* @remarks | ||
* | ||
* - By default higher priority values mean higher priority. | ||
@@ -12,0 +13,0 @@ * - Already queued items can be reprioritized or removed. |
40843
795
Updated@thi.ng/api@^8.11.20
Updated@thi.ng/compare@^2.4.12
Updated@thi.ng/equiv@^2.1.76