d-ary-heap 2.1.1

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/src/index.ts ADDED
@@ -0,0 +1,30 @@
1
+ /**
2
+ * d-ary Heap Priority Queue - TypeScript Implementation
3
+ *
4
+ * A high-performance, generic d-ary heap priority queue with O(1) item lookup.
5
+ *
6
+ * @packageDocumentation
7
+ * @module d-ary-heap
8
+ * @version 2.0.0
9
+ * @license Apache-2.0
10
+ * @copyright 2023-2025 Eric Jacopin
11
+ */
12
+
13
+ export { PriorityQueue } from './PriorityQueue';
14
+ export type {
15
+ Position,
16
+ Comparator,
17
+ KeyExtractor,
18
+ PriorityQueueOptions,
19
+ } from './PriorityQueue';
20
+
21
+ export {
22
+ minBy,
23
+ maxBy,
24
+ minNumber,
25
+ maxNumber,
26
+ minString,
27
+ maxString,
28
+ reverse,
29
+ chain,
30
+ } from './comparators';