data-structure-typed 2.5.1 → 2.5.3

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.
Files changed (184) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/MIGRATION.md +169 -0
  3. package/README.md +135 -23
  4. package/README_CN.md +551 -143
  5. package/SPECIFICATION.md +20 -14
  6. package/SPECIFICATION.zh-CN.md +20 -14
  7. package/dist/cjs/binary-tree.cjs +6460 -1591
  8. package/dist/cjs/graph.cjs +440 -20
  9. package/dist/cjs/hash.cjs +125 -22
  10. package/dist/cjs/heap.cjs +196 -47
  11. package/dist/cjs/index.cjs +8486 -2429
  12. package/dist/cjs/linked-list.cjs +456 -31
  13. package/dist/cjs/matrix.cjs +79 -9
  14. package/dist/cjs/priority-queue.cjs +193 -44
  15. package/dist/cjs/queue.cjs +391 -2
  16. package/dist/cjs/stack.cjs +92 -6
  17. package/dist/cjs/trie.cjs +122 -28
  18. package/dist/cjs-legacy/binary-tree.cjs +6484 -1612
  19. package/dist/cjs-legacy/graph.cjs +440 -20
  20. package/dist/cjs-legacy/hash.cjs +125 -22
  21. package/dist/cjs-legacy/heap.cjs +196 -47
  22. package/dist/cjs-legacy/index.cjs +8654 -2594
  23. package/dist/cjs-legacy/linked-list.cjs +456 -31
  24. package/dist/cjs-legacy/matrix.cjs +79 -9
  25. package/dist/cjs-legacy/priority-queue.cjs +193 -44
  26. package/dist/cjs-legacy/queue.cjs +391 -2
  27. package/dist/cjs-legacy/stack.cjs +92 -6
  28. package/dist/cjs-legacy/trie.cjs +122 -28
  29. package/dist/esm/binary-tree.mjs +6460 -1591
  30. package/dist/esm/graph.mjs +440 -20
  31. package/dist/esm/hash.mjs +125 -22
  32. package/dist/esm/heap.mjs +196 -47
  33. package/dist/esm/index.mjs +8486 -2430
  34. package/dist/esm/linked-list.mjs +456 -31
  35. package/dist/esm/matrix.mjs +79 -9
  36. package/dist/esm/priority-queue.mjs +193 -44
  37. package/dist/esm/queue.mjs +391 -2
  38. package/dist/esm/stack.mjs +92 -6
  39. package/dist/esm/trie.mjs +122 -28
  40. package/dist/esm-legacy/binary-tree.mjs +6484 -1612
  41. package/dist/esm-legacy/graph.mjs +440 -20
  42. package/dist/esm-legacy/hash.mjs +125 -22
  43. package/dist/esm-legacy/heap.mjs +196 -47
  44. package/dist/esm-legacy/index.mjs +8654 -2595
  45. package/dist/esm-legacy/linked-list.mjs +456 -31
  46. package/dist/esm-legacy/matrix.mjs +79 -9
  47. package/dist/esm-legacy/priority-queue.mjs +193 -44
  48. package/dist/esm-legacy/queue.mjs +391 -2
  49. package/dist/esm-legacy/stack.mjs +92 -6
  50. package/dist/esm-legacy/trie.mjs +122 -28
  51. package/dist/types/common/error.d.ts +9 -0
  52. package/dist/types/common/index.d.ts +1 -1
  53. package/dist/types/data-structures/binary-tree/avl-tree.d.ts +98 -2
  54. package/dist/types/data-structures/binary-tree/binary-indexed-tree.d.ts +112 -0
  55. package/dist/types/data-structures/binary-tree/binary-tree.d.ts +214 -13
  56. package/dist/types/data-structures/binary-tree/bst.d.ts +294 -3
  57. package/dist/types/data-structures/binary-tree/red-black-tree.d.ts +155 -8
  58. package/dist/types/data-structures/binary-tree/segment-tree.d.ts +48 -0
  59. package/dist/types/data-structures/binary-tree/tree-map.d.ts +1370 -323
  60. package/dist/types/data-structures/binary-tree/tree-multi-map.d.ts +1329 -316
  61. package/dist/types/data-structures/binary-tree/tree-multi-set.d.ts +1116 -295
  62. package/dist/types/data-structures/binary-tree/tree-set.d.ts +1330 -326
  63. package/dist/types/data-structures/graph/directed-graph.d.ts +80 -0
  64. package/dist/types/data-structures/graph/undirected-graph.d.ts +72 -0
  65. package/dist/types/data-structures/hash/hash-map.d.ts +95 -6
  66. package/dist/types/data-structures/heap/heap.d.ts +154 -12
  67. package/dist/types/data-structures/linked-list/doubly-linked-list.d.ts +143 -0
  68. package/dist/types/data-structures/linked-list/singly-linked-list.d.ts +121 -1
  69. package/dist/types/data-structures/linked-list/skip-linked-list.d.ts +144 -0
  70. package/dist/types/data-structures/matrix/matrix.d.ts +64 -0
  71. package/dist/types/data-structures/queue/deque.d.ts +142 -0
  72. package/dist/types/data-structures/queue/queue.d.ts +109 -0
  73. package/dist/types/data-structures/stack/stack.d.ts +82 -2
  74. package/dist/types/data-structures/trie/trie.d.ts +96 -0
  75. package/dist/types/interfaces/binary-tree.d.ts +2 -3
  76. package/dist/types/types/data-structures/binary-tree/bst.d.ts +1 -0
  77. package/dist/types/types/data-structures/binary-tree/tree-map.d.ts +5 -0
  78. package/dist/types/types/data-structures/binary-tree/tree-multi-set.d.ts +4 -0
  79. package/dist/types/types/data-structures/binary-tree/tree-set.d.ts +4 -0
  80. package/dist/umd/data-structure-typed.js +8623 -2564
  81. package/dist/umd/data-structure-typed.min.js +5 -5
  82. package/docs-site-docusaurus/docs/api/classes/AVLTree.md +696 -194
  83. package/docs-site-docusaurus/docs/api/classes/AVLTreeNode.md +11 -11
  84. package/docs-site-docusaurus/docs/api/classes/AbstractGraph.md +71 -71
  85. package/docs-site-docusaurus/docs/api/classes/BST.md +639 -189
  86. package/docs-site-docusaurus/docs/api/classes/BSTNode.md +13 -13
  87. package/docs-site-docusaurus/docs/api/classes/BinaryIndexedTree.md +15 -15
  88. package/docs-site-docusaurus/docs/api/classes/BinaryTree.md +148 -160
  89. package/docs-site-docusaurus/docs/api/classes/BinaryTreeNode.md +13 -13
  90. package/docs-site-docusaurus/docs/api/classes/Deque.md +105 -91
  91. package/docs-site-docusaurus/docs/api/classes/DirectedGraph.md +82 -82
  92. package/docs-site-docusaurus/docs/api/classes/DoublyLinkedList.md +104 -74
  93. package/docs-site-docusaurus/docs/api/classes/DoublyLinkedListNode.md +8 -8
  94. package/docs-site-docusaurus/docs/api/classes/FibonacciHeap.md +12 -12
  95. package/docs-site-docusaurus/docs/api/classes/FibonacciHeapNode.md +1 -1
  96. package/docs-site-docusaurus/docs/api/classes/HashMap.md +51 -51
  97. package/docs-site-docusaurus/docs/api/classes/Heap.md +96 -85
  98. package/docs-site-docusaurus/docs/api/classes/IterableElementBase.md +25 -25
  99. package/docs-site-docusaurus/docs/api/classes/IterableEntryBase.md +33 -33
  100. package/docs-site-docusaurus/docs/api/classes/LinearBase.md +50 -50
  101. package/docs-site-docusaurus/docs/api/classes/LinearLinkedBase.md +55 -55
  102. package/docs-site-docusaurus/docs/api/classes/LinkedHashMap.md +55 -55
  103. package/docs-site-docusaurus/docs/api/classes/LinkedListNode.md +6 -6
  104. package/docs-site-docusaurus/docs/api/classes/LinkedListQueue.md +78 -78
  105. package/docs-site-docusaurus/docs/api/classes/MapGraph.md +82 -82
  106. package/docs-site-docusaurus/docs/api/classes/Matrix.md +31 -31
  107. package/docs-site-docusaurus/docs/api/classes/MaxHeap.md +104 -89
  108. package/docs-site-docusaurus/docs/api/classes/MaxPriorityQueue.md +104 -89
  109. package/docs-site-docusaurus/docs/api/classes/MinHeap.md +104 -89
  110. package/docs-site-docusaurus/docs/api/classes/MinPriorityQueue.md +104 -89
  111. package/docs-site-docusaurus/docs/api/classes/Navigator.md +5 -5
  112. package/docs-site-docusaurus/docs/api/classes/PriorityQueue.md +103 -88
  113. package/docs-site-docusaurus/docs/api/classes/Queue.md +112 -60
  114. package/docs-site-docusaurus/docs/api/classes/RedBlackTree.md +708 -206
  115. package/docs-site-docusaurus/docs/api/classes/SegmentTree.md +10 -10
  116. package/docs-site-docusaurus/docs/api/classes/SinglyLinkedList.md +79 -79
  117. package/docs-site-docusaurus/docs/api/classes/SinglyLinkedListNode.md +6 -6
  118. package/docs-site-docusaurus/docs/api/classes/SkipList.md +44 -44
  119. package/docs-site-docusaurus/docs/api/classes/Stack.md +42 -42
  120. package/docs-site-docusaurus/docs/api/classes/TreeMap.md +236 -33
  121. package/docs-site-docusaurus/docs/api/classes/TreeMultiMap.md +162 -46
  122. package/docs-site-docusaurus/docs/api/classes/TreeSet.md +232 -32
  123. package/docs-site-docusaurus/docs/api/classes/Trie.md +47 -47
  124. package/docs-site-docusaurus/docs/api/classes/TrieNode.md +8 -8
  125. package/docs-site-docusaurus/docs/api/classes/UndirectedGraph.md +81 -81
  126. package/docs-site-docusaurus/docs/guide/architecture.md +75 -5
  127. package/docs-site-docusaurus/docs/guide/concepts.md +53 -3
  128. package/docs-site-docusaurus/docs/guide/faq.md +233 -0
  129. package/docs-site-docusaurus/docs/guide/guides.md +43 -58
  130. package/docs-site-docusaurus/docs/guide/installation.md +2 -0
  131. package/docs-site-docusaurus/docs/guide/integrations.md +75 -176
  132. package/docs-site-docusaurus/docs/guide/overview.md +132 -11
  133. package/docs-site-docusaurus/docs/guide/performance.md +2 -0
  134. package/docs-site-docusaurus/docs/guide/quick-start.md +31 -0
  135. package/docs-site-docusaurus/docs/guide/use-cases/_category_.json +6 -0
  136. package/docs-site-docusaurus/docs/guide/use-cases/array-sort-alternative.md +158 -0
  137. package/docs-site-docusaurus/docs/guide/use-cases/heap-vs-sorting.md +92 -0
  138. package/docs-site-docusaurus/docs/guide/use-cases/map-vs-treemap.md +151 -0
  139. package/docs-site-docusaurus/docs/guide/use-cases/priority-queue-typescript.md +113 -0
  140. package/docs-site-docusaurus/docs/guide/use-cases/treemap-javascript.md +151 -0
  141. package/docs-site-docusaurus/docusaurus.config.ts +1 -1
  142. package/docs-site-docusaurus/src/pages/index.tsx +55 -2
  143. package/docs-site-docusaurus/static/llms.txt +37 -0
  144. package/docs-site-docusaurus/typedoc.json +1 -0
  145. package/llms.txt +37 -0
  146. package/package.json +65 -56
  147. package/src/common/error.ts +19 -1
  148. package/src/common/index.ts +1 -1
  149. package/src/data-structures/base/iterable-element-base.ts +3 -2
  150. package/src/data-structures/binary-tree/avl-tree.ts +99 -5
  151. package/src/data-structures/binary-tree/binary-indexed-tree.ts +102 -4
  152. package/src/data-structures/binary-tree/binary-tree.ts +239 -78
  153. package/src/data-structures/binary-tree/bst.ts +542 -13
  154. package/src/data-structures/binary-tree/red-black-tree.ts +155 -15
  155. package/src/data-structures/binary-tree/segment-tree.ts +42 -0
  156. package/src/data-structures/binary-tree/tree-map.ts +1223 -261
  157. package/src/data-structures/binary-tree/tree-multi-map.ts +939 -30
  158. package/src/data-structures/binary-tree/tree-multi-set.ts +746 -10
  159. package/src/data-structures/binary-tree/tree-set.ts +1018 -99
  160. package/src/data-structures/graph/abstract-graph.ts +2 -2
  161. package/src/data-structures/graph/directed-graph.ts +71 -1
  162. package/src/data-structures/graph/undirected-graph.ts +64 -1
  163. package/src/data-structures/hash/hash-map.ts +102 -16
  164. package/src/data-structures/heap/heap.ts +153 -23
  165. package/src/data-structures/heap/max-heap.ts +2 -2
  166. package/src/data-structures/linked-list/doubly-linked-list.ts +139 -0
  167. package/src/data-structures/linked-list/singly-linked-list.ts +106 -1
  168. package/src/data-structures/linked-list/skip-linked-list.ts +131 -5
  169. package/src/data-structures/matrix/matrix.ts +65 -9
  170. package/src/data-structures/priority-queue/max-priority-queue.ts +2 -2
  171. package/src/data-structures/queue/deque.ts +130 -0
  172. package/src/data-structures/queue/queue.ts +109 -0
  173. package/src/data-structures/stack/stack.ts +75 -5
  174. package/src/data-structures/trie/trie.ts +86 -2
  175. package/src/interfaces/binary-tree.ts +1 -9
  176. package/src/types/data-structures/binary-tree/bst.ts +1 -0
  177. package/src/types/data-structures/binary-tree/tree-map.ts +6 -0
  178. package/src/types/data-structures/binary-tree/tree-multi-set.ts +5 -0
  179. package/src/types/data-structures/binary-tree/tree-set.ts +5 -0
  180. package/.vitepress/cache/deps_temp_51f5f1b0/chunk-7OIKW5WK.js +0 -12984
  181. package/.vitepress/cache/deps_temp_51f5f1b0/package.json +0 -3
  182. package/.vitepress/cache/deps_temp_51f5f1b0/vitepress___@vue_devtools-api.js +0 -4505
  183. package/.vitepress/cache/deps_temp_51f5f1b0/vitepress___@vueuse_core.js +0 -9731
  184. package/.vitepress/cache/deps_temp_51f5f1b0/vue.js +0 -347
@@ -40,7 +40,7 @@ export declare class SinglyLinkedListNode<E = any> extends LinkedListNode<E> {
40
40
  * @remarks Time O(1), Space O(1)
41
41
  * @template E
42
42
  * @template R
43
- * 1. Node Structure: Each node contains three parts: a data field, a pointer (or reference) to the previous node, and a pointer to the next node. This structure allows traversal of the linked list in both directions.
43
+ * 1. Node Structure: Each node contains two parts: a data field and a pointer (or reference) to the next node. This structure allows forward-only traversal of the linked list.
44
44
  * 2. Bidirectional Traversal: Unlike doubly linked lists, singly linked lists can be easily traversed forwards but not backwards.
45
45
  * 3. No Centralized Index: Unlike arrays, elements in a linked list are not stored contiguously, so there is no centralized index. Accessing elements in a linked list typically requires traversing from the head or tail node.
46
46
  * 4. High Efficiency in Insertion and Deletion: Adding or removing elements in a linked list does not require moving other elements, making these operations more efficient than in arrays.
@@ -256,6 +256,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
256
256
 
257
257
 
258
258
 
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
259
267
 
260
268
 
261
269
 
@@ -308,6 +316,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
308
316
 
309
317
 
310
318
 
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
311
327
 
312
328
 
313
329
 
@@ -360,6 +376,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
360
376
 
361
377
 
362
378
 
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
363
387
 
364
388
 
365
389
 
@@ -403,6 +427,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
403
427
 
404
428
 
405
429
 
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
406
438
 
407
439
 
408
440
 
@@ -482,6 +514,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
482
514
 
483
515
 
484
516
 
517
+
518
+
519
+
520
+
521
+
522
+
523
+
524
+
485
525
 
486
526
 
487
527
 
@@ -530,6 +570,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
530
570
 
531
571
 
532
572
 
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+
533
581
 
534
582
 
535
583
 
@@ -569,6 +617,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
569
617
 
570
618
 
571
619
 
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+
572
628
 
573
629
 
574
630
 
@@ -609,6 +665,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
609
665
 
610
666
 
611
667
 
668
+
669
+
670
+
671
+
672
+
673
+
674
+
675
+
612
676
 
613
677
 
614
678
 
@@ -650,6 +714,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
650
714
 
651
715
 
652
716
 
717
+
718
+
719
+
720
+
721
+
722
+
723
+
724
+
653
725
 
654
726
 
655
727
 
@@ -698,6 +770,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
698
770
 
699
771
 
700
772
 
773
+
774
+
775
+
776
+
777
+
778
+
779
+
780
+
701
781
 
702
782
 
703
783
 
@@ -736,6 +816,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
736
816
 
737
817
 
738
818
 
819
+
820
+
821
+
822
+
823
+
824
+
825
+
826
+
739
827
 
740
828
 
741
829
 
@@ -778,6 +866,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
778
866
 
779
867
 
780
868
 
869
+
870
+
871
+
872
+
873
+
874
+
875
+
876
+
781
877
 
782
878
 
783
879
 
@@ -871,6 +967,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
871
967
 
872
968
 
873
969
 
970
+
971
+
972
+
973
+
974
+
975
+
976
+
977
+
874
978
 
875
979
 
876
980
 
@@ -917,6 +1021,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
917
1021
 
918
1022
 
919
1023
 
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
920
1032
 
921
1033
 
922
1034
 
@@ -982,6 +1094,14 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
982
1094
 
983
1095
 
984
1096
 
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+
985
1105
 
986
1106
 
987
1107
 
@@ -71,6 +71,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
71
71
 
72
72
 
73
73
 
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
74
82
 
75
83
 
76
84
 
@@ -107,6 +115,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
107
115
 
108
116
 
109
117
 
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
110
126
 
111
127
 
112
128
 
@@ -144,6 +160,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
144
160
 
145
161
 
146
162
 
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
147
171
 
148
172
 
149
173
 
@@ -186,6 +210,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
186
210
 
187
211
 
188
212
 
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
189
221
 
190
222
 
191
223
 
@@ -238,6 +270,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
238
270
 
239
271
 
240
272
 
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+
241
281
 
242
282
 
243
283
 
@@ -294,6 +334,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
294
334
 
295
335
 
296
336
 
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+
297
345
 
298
346
 
299
347
 
@@ -334,6 +382,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
334
382
 
335
383
 
336
384
 
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
337
393
 
338
394
 
339
395
 
@@ -381,6 +437,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
381
437
 
382
438
 
383
439
 
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
384
448
 
385
449
 
386
450
 
@@ -420,6 +484,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
420
484
 
421
485
 
422
486
 
487
+
488
+
489
+
490
+
491
+
492
+
493
+
494
+
423
495
 
424
496
 
425
497
 
@@ -456,6 +528,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
456
528
 
457
529
 
458
530
 
531
+
532
+
533
+
534
+
535
+
536
+
537
+
538
+
459
539
 
460
540
 
461
541
 
@@ -493,6 +573,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
493
573
 
494
574
 
495
575
 
576
+
577
+
578
+
579
+
580
+
581
+
582
+
583
+
496
584
 
497
585
 
498
586
 
@@ -533,6 +621,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
533
621
 
534
622
 
535
623
 
624
+
625
+
626
+
627
+
628
+
629
+
630
+
631
+
536
632
 
537
633
 
538
634
 
@@ -573,6 +669,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
573
669
 
574
670
 
575
671
 
672
+
673
+
674
+
675
+
676
+
677
+
678
+
679
+
576
680
 
577
681
 
578
682
 
@@ -610,6 +714,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
610
714
 
611
715
 
612
716
 
717
+
718
+
719
+
720
+
721
+
722
+
723
+
724
+
613
725
 
614
726
 
615
727
 
@@ -647,6 +759,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
647
759
 
648
760
 
649
761
 
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
650
770
 
651
771
 
652
772
 
@@ -687,6 +807,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
687
807
 
688
808
 
689
809
 
810
+
811
+
812
+
813
+
814
+
815
+
816
+
817
+
690
818
 
691
819
 
692
820
 
@@ -724,6 +852,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
724
852
 
725
853
 
726
854
 
855
+
856
+
857
+
858
+
859
+
860
+
861
+
862
+
727
863
 
728
864
 
729
865
 
@@ -761,6 +897,14 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
761
897
 
762
898
 
763
899
 
900
+
901
+
902
+
903
+
904
+
905
+
906
+
907
+
764
908
 
765
909
 
766
910
 
@@ -164,6 +164,14 @@ export declare class Matrix {
164
164
 
165
165
 
166
166
 
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
167
175
 
168
176
 
169
177
 
@@ -224,6 +232,14 @@ export declare class Matrix {
224
232
 
225
233
 
226
234
 
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
227
243
 
228
244
 
229
245
 
@@ -276,6 +292,14 @@ export declare class Matrix {
276
292
 
277
293
 
278
294
 
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
279
303
 
280
304
 
281
305
 
@@ -337,6 +361,14 @@ export declare class Matrix {
337
361
 
338
362
 
339
363
 
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
340
372
 
341
373
 
342
374
 
@@ -381,6 +413,14 @@ export declare class Matrix {
381
413
 
382
414
 
383
415
 
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
384
424
 
385
425
 
386
426
 
@@ -440,6 +480,14 @@ export declare class Matrix {
440
480
 
441
481
 
442
482
 
483
+
484
+
485
+
486
+
487
+
488
+
489
+
490
+
443
491
 
444
492
 
445
493
 
@@ -495,6 +543,14 @@ export declare class Matrix {
495
543
 
496
544
 
497
545
 
546
+
547
+
548
+
549
+
550
+
551
+
552
+
553
+
498
554
 
499
555
 
500
556
 
@@ -543,6 +599,14 @@ export declare class Matrix {
543
599
 
544
600
 
545
601
 
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
546
610
 
547
611
 
548
612