data-structure-typed 2.5.1 → 2.5.2
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 +3 -1
- package/README.md +75 -17
- package/dist/cjs/binary-tree.cjs +2723 -139
- package/dist/cjs/graph.cjs +192 -6
- package/dist/cjs/hash.cjs +63 -15
- package/dist/cjs/heap.cjs +93 -31
- package/dist/cjs/index.cjs +3514 -379
- package/dist/cjs/linked-list.cjs +237 -31
- package/dist/cjs/matrix.cjs +47 -9
- package/dist/cjs/priority-queue.cjs +92 -30
- package/dist/cjs/queue.cjs +176 -2
- package/dist/cjs/stack.cjs +48 -2
- package/dist/cjs/trie.cjs +78 -28
- package/dist/cjs-legacy/binary-tree.cjs +2725 -136
- package/dist/cjs-legacy/graph.cjs +192 -6
- package/dist/cjs-legacy/hash.cjs +63 -15
- package/dist/cjs-legacy/heap.cjs +93 -31
- package/dist/cjs-legacy/index.cjs +3389 -249
- package/dist/cjs-legacy/linked-list.cjs +237 -31
- package/dist/cjs-legacy/matrix.cjs +47 -9
- package/dist/cjs-legacy/priority-queue.cjs +92 -30
- package/dist/cjs-legacy/queue.cjs +176 -2
- package/dist/cjs-legacy/stack.cjs +48 -2
- package/dist/cjs-legacy/trie.cjs +78 -28
- package/dist/esm/binary-tree.mjs +2723 -139
- package/dist/esm/graph.mjs +192 -6
- package/dist/esm/hash.mjs +63 -15
- package/dist/esm/heap.mjs +93 -31
- package/dist/esm/index.mjs +3514 -380
- package/dist/esm/linked-list.mjs +237 -31
- package/dist/esm/matrix.mjs +47 -9
- package/dist/esm/priority-queue.mjs +92 -30
- package/dist/esm/queue.mjs +176 -2
- package/dist/esm/stack.mjs +48 -2
- package/dist/esm/trie.mjs +78 -28
- package/dist/esm-legacy/binary-tree.mjs +2725 -136
- package/dist/esm-legacy/graph.mjs +192 -6
- package/dist/esm-legacy/hash.mjs +63 -15
- package/dist/esm-legacy/heap.mjs +93 -31
- package/dist/esm-legacy/index.mjs +3389 -250
- package/dist/esm-legacy/linked-list.mjs +237 -31
- package/dist/esm-legacy/matrix.mjs +47 -9
- package/dist/esm-legacy/priority-queue.mjs +92 -30
- package/dist/esm-legacy/queue.mjs +176 -2
- package/dist/esm-legacy/stack.mjs +48 -2
- package/dist/esm-legacy/trie.mjs +78 -28
- package/dist/types/common/error.d.ts +9 -0
- package/dist/types/common/index.d.ts +1 -1
- package/dist/types/data-structures/binary-tree/avl-tree.d.ts +48 -0
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.d.ts +56 -0
- package/dist/types/data-structures/binary-tree/binary-tree.d.ts +102 -2
- package/dist/types/data-structures/binary-tree/bst.d.ts +195 -0
- package/dist/types/data-structures/binary-tree/red-black-tree.d.ts +76 -0
- package/dist/types/data-structures/binary-tree/segment-tree.d.ts +24 -0
- package/dist/types/data-structures/binary-tree/tree-map.d.ts +528 -0
- package/dist/types/data-structures/binary-tree/tree-multi-map.d.ts +531 -6
- package/dist/types/data-structures/binary-tree/tree-multi-set.d.ts +435 -6
- package/dist/types/data-structures/binary-tree/tree-set.d.ts +505 -0
- package/dist/types/data-structures/graph/directed-graph.d.ts +40 -0
- package/dist/types/data-structures/graph/undirected-graph.d.ts +36 -0
- package/dist/types/data-structures/hash/hash-map.d.ts +44 -0
- package/dist/types/data-structures/heap/heap.d.ts +56 -0
- package/dist/types/data-structures/linked-list/doubly-linked-list.d.ts +68 -0
- package/dist/types/data-structures/linked-list/singly-linked-list.d.ts +60 -0
- package/dist/types/data-structures/linked-list/skip-linked-list.d.ts +72 -0
- package/dist/types/data-structures/matrix/matrix.d.ts +32 -0
- package/dist/types/data-structures/queue/deque.d.ts +60 -0
- package/dist/types/data-structures/queue/queue.d.ts +48 -0
- package/dist/types/data-structures/stack/stack.d.ts +40 -0
- package/dist/types/data-structures/trie/trie.d.ts +48 -0
- package/dist/types/types/data-structures/binary-tree/bst.d.ts +1 -0
- package/dist/types/types/data-structures/binary-tree/tree-map.d.ts +5 -0
- package/dist/types/types/data-structures/binary-tree/tree-multi-set.d.ts +4 -0
- package/dist/types/types/data-structures/binary-tree/tree-set.d.ts +4 -0
- package/dist/umd/data-structure-typed.js +3404 -265
- package/dist/umd/data-structure-typed.min.js +5 -5
- package/docs-site-docusaurus/docs/api/classes/AVLTree.md +650 -136
- package/docs-site-docusaurus/docs/api/classes/AVLTreeNode.md +11 -11
- package/docs-site-docusaurus/docs/api/classes/AbstractGraph.md +71 -71
- package/docs-site-docusaurus/docs/api/classes/BST.md +591 -129
- package/docs-site-docusaurus/docs/api/classes/BSTNode.md +13 -13
- package/docs-site-docusaurus/docs/api/classes/BinaryIndexedTree.md +15 -15
- package/docs-site-docusaurus/docs/api/classes/BinaryTree.md +107 -107
- package/docs-site-docusaurus/docs/api/classes/BinaryTreeNode.md +13 -13
- package/docs-site-docusaurus/docs/api/classes/Deque.md +82 -82
- package/docs-site-docusaurus/docs/api/classes/DirectedGraph.md +82 -82
- package/docs-site-docusaurus/docs/api/classes/DoublyLinkedList.md +74 -74
- package/docs-site-docusaurus/docs/api/classes/DoublyLinkedListNode.md +8 -8
- package/docs-site-docusaurus/docs/api/classes/FibonacciHeap.md +9 -9
- package/docs-site-docusaurus/docs/api/classes/FibonacciHeapNode.md +1 -1
- package/docs-site-docusaurus/docs/api/classes/HashMap.md +47 -47
- package/docs-site-docusaurus/docs/api/classes/Heap.md +45 -45
- package/docs-site-docusaurus/docs/api/classes/IterableElementBase.md +25 -25
- package/docs-site-docusaurus/docs/api/classes/IterableEntryBase.md +33 -33
- package/docs-site-docusaurus/docs/api/classes/LinearBase.md +50 -50
- package/docs-site-docusaurus/docs/api/classes/LinearLinkedBase.md +55 -55
- package/docs-site-docusaurus/docs/api/classes/LinkedHashMap.md +49 -49
- package/docs-site-docusaurus/docs/api/classes/LinkedListNode.md +6 -6
- package/docs-site-docusaurus/docs/api/classes/LinkedListQueue.md +78 -78
- package/docs-site-docusaurus/docs/api/classes/MapGraph.md +82 -82
- package/docs-site-docusaurus/docs/api/classes/Matrix.md +31 -31
- package/docs-site-docusaurus/docs/api/classes/MaxHeap.md +45 -45
- package/docs-site-docusaurus/docs/api/classes/MaxPriorityQueue.md +45 -45
- package/docs-site-docusaurus/docs/api/classes/MinHeap.md +45 -45
- package/docs-site-docusaurus/docs/api/classes/MinPriorityQueue.md +45 -45
- package/docs-site-docusaurus/docs/api/classes/Navigator.md +5 -5
- package/docs-site-docusaurus/docs/api/classes/PriorityQueue.md +44 -44
- package/docs-site-docusaurus/docs/api/classes/Queue.md +60 -60
- package/docs-site-docusaurus/docs/api/classes/RedBlackTree.md +660 -146
- package/docs-site-docusaurus/docs/api/classes/SegmentTree.md +10 -10
- package/docs-site-docusaurus/docs/api/classes/SinglyLinkedList.md +78 -78
- package/docs-site-docusaurus/docs/api/classes/SinglyLinkedListNode.md +6 -6
- package/docs-site-docusaurus/docs/api/classes/SkipList.md +44 -44
- package/docs-site-docusaurus/docs/api/classes/Stack.md +39 -39
- package/docs-site-docusaurus/docs/api/classes/TreeMap.md +165 -33
- package/docs-site-docusaurus/docs/api/classes/TreeMultiMap.md +162 -46
- package/docs-site-docusaurus/docs/api/classes/TreeSet.md +161 -32
- package/docs-site-docusaurus/docs/api/classes/Trie.md +47 -47
- package/docs-site-docusaurus/docs/api/classes/TrieNode.md +8 -8
- package/docs-site-docusaurus/docs/api/classes/UndirectedGraph.md +81 -81
- package/docs-site-docusaurus/docs/guide/architecture.md +2 -0
- package/docs-site-docusaurus/docs/guide/concepts.md +32 -1
- package/docs-site-docusaurus/docs/guide/faq.md +180 -0
- package/docs-site-docusaurus/docs/guide/guides.md +40 -54
- package/docs-site-docusaurus/docs/guide/installation.md +2 -0
- package/docs-site-docusaurus/docs/guide/integrations.md +2 -0
- package/docs-site-docusaurus/docs/guide/overview.md +7 -0
- package/docs-site-docusaurus/docs/guide/performance.md +2 -0
- package/docs-site-docusaurus/docs/guide/quick-start.md +31 -0
- package/docs-site-docusaurus/docs/guide/use-cases/_category_.json +6 -0
- package/docs-site-docusaurus/docs/guide/use-cases/array-sort-alternative.md +158 -0
- package/docs-site-docusaurus/docs/guide/use-cases/heap-vs-sorting.md +92 -0
- package/docs-site-docusaurus/docs/guide/use-cases/map-vs-treemap.md +151 -0
- package/docs-site-docusaurus/docs/guide/use-cases/priority-queue-typescript.md +113 -0
- package/docs-site-docusaurus/docs/guide/use-cases/treemap-javascript.md +151 -0
- package/docs-site-docusaurus/docusaurus.config.ts +1 -1
- package/docs-site-docusaurus/src/pages/index.tsx +51 -2
- package/docs-site-docusaurus/static/llms.txt +37 -0
- package/llms.txt +37 -0
- package/package.json +64 -56
- package/src/common/error.ts +19 -1
- package/src/common/index.ts +1 -1
- package/src/data-structures/base/iterable-element-base.ts +3 -2
- package/src/data-structures/binary-tree/avl-tree.ts +47 -0
- package/src/data-structures/binary-tree/binary-indexed-tree.ts +46 -4
- package/src/data-structures/binary-tree/binary-tree.ts +79 -4
- package/src/data-structures/binary-tree/bst.ts +441 -6
- package/src/data-structures/binary-tree/red-black-tree.ts +73 -0
- package/src/data-structures/binary-tree/segment-tree.ts +18 -0
- package/src/data-structures/binary-tree/tree-map.ts +434 -9
- package/src/data-structures/binary-tree/tree-multi-map.ts +426 -5
- package/src/data-structures/binary-tree/tree-multi-set.ts +350 -6
- package/src/data-structures/binary-tree/tree-set.ts +410 -8
- package/src/data-structures/graph/abstract-graph.ts +2 -2
- package/src/data-structures/graph/directed-graph.ts +30 -0
- package/src/data-structures/graph/undirected-graph.ts +27 -0
- package/src/data-structures/hash/hash-map.ts +35 -4
- package/src/data-structures/heap/heap.ts +46 -4
- package/src/data-structures/heap/max-heap.ts +2 -2
- package/src/data-structures/linked-list/doubly-linked-list.ts +51 -0
- package/src/data-structures/linked-list/singly-linked-list.ts +45 -0
- package/src/data-structures/linked-list/skip-linked-list.ts +59 -5
- package/src/data-structures/matrix/matrix.ts +33 -9
- package/src/data-structures/priority-queue/max-priority-queue.ts +2 -2
- package/src/data-structures/queue/deque.ts +45 -0
- package/src/data-structures/queue/queue.ts +36 -0
- package/src/data-structures/stack/stack.ts +30 -0
- package/src/data-structures/trie/trie.ts +38 -2
- package/src/types/data-structures/binary-tree/bst.ts +1 -0
- package/src/types/data-structures/binary-tree/tree-map.ts +6 -0
- package/src/types/data-structures/binary-tree/tree-multi-set.ts +5 -0
- package/src/types/data-structures/binary-tree/tree-set.ts +5 -0
|
@@ -260,6 +260,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
260
260
|
|
|
261
261
|
|
|
262
262
|
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
263
267
|
|
|
264
268
|
|
|
265
269
|
|
|
@@ -312,6 +316,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
312
316
|
|
|
313
317
|
|
|
314
318
|
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
315
323
|
|
|
316
324
|
|
|
317
325
|
|
|
@@ -364,6 +372,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
364
372
|
|
|
365
373
|
|
|
366
374
|
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
367
379
|
|
|
368
380
|
|
|
369
381
|
|
|
@@ -407,6 +419,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
407
419
|
|
|
408
420
|
|
|
409
421
|
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
410
426
|
|
|
411
427
|
|
|
412
428
|
|
|
@@ -486,6 +502,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
486
502
|
|
|
487
503
|
|
|
488
504
|
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
489
509
|
|
|
490
510
|
|
|
491
511
|
|
|
@@ -534,6 +554,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
534
554
|
|
|
535
555
|
|
|
536
556
|
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
537
561
|
|
|
538
562
|
|
|
539
563
|
|
|
@@ -573,6 +597,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
573
597
|
|
|
574
598
|
|
|
575
599
|
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
|
|
576
604
|
|
|
577
605
|
|
|
578
606
|
|
|
@@ -613,6 +641,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
613
641
|
|
|
614
642
|
|
|
615
643
|
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
|
|
616
648
|
|
|
617
649
|
|
|
618
650
|
|
|
@@ -654,6 +686,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
654
686
|
|
|
655
687
|
|
|
656
688
|
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
|
|
657
693
|
|
|
658
694
|
|
|
659
695
|
|
|
@@ -702,6 +738,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
702
738
|
|
|
703
739
|
|
|
704
740
|
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
705
745
|
|
|
706
746
|
|
|
707
747
|
|
|
@@ -740,6 +780,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
740
780
|
|
|
741
781
|
|
|
742
782
|
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
|
743
787
|
|
|
744
788
|
|
|
745
789
|
|
|
@@ -782,6 +826,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
782
826
|
|
|
783
827
|
|
|
784
828
|
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
785
833
|
|
|
786
834
|
|
|
787
835
|
|
|
@@ -875,6 +923,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
875
923
|
|
|
876
924
|
|
|
877
925
|
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
|
|
878
930
|
|
|
879
931
|
|
|
880
932
|
|
|
@@ -921,6 +973,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
921
973
|
|
|
922
974
|
|
|
923
975
|
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
|
|
924
980
|
|
|
925
981
|
|
|
926
982
|
|
|
@@ -986,6 +1042,10 @@ export declare class SinglyLinkedList<E = any, R = any> extends LinearLinkedBase
|
|
|
986
1042
|
|
|
987
1043
|
|
|
988
1044
|
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
|
|
989
1049
|
|
|
990
1050
|
|
|
991
1051
|
|
|
@@ -75,6 +75,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
78
82
|
|
|
79
83
|
|
|
80
84
|
|
|
@@ -111,6 +115,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
111
115
|
|
|
112
116
|
|
|
113
117
|
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
114
122
|
|
|
115
123
|
|
|
116
124
|
|
|
@@ -148,6 +156,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
148
156
|
|
|
149
157
|
|
|
150
158
|
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
151
163
|
|
|
152
164
|
|
|
153
165
|
|
|
@@ -190,6 +202,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
190
202
|
|
|
191
203
|
|
|
192
204
|
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
193
209
|
|
|
194
210
|
|
|
195
211
|
|
|
@@ -242,6 +258,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
242
258
|
|
|
243
259
|
|
|
244
260
|
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
245
265
|
|
|
246
266
|
|
|
247
267
|
|
|
@@ -298,6 +318,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
298
318
|
|
|
299
319
|
|
|
300
320
|
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
301
325
|
|
|
302
326
|
|
|
303
327
|
|
|
@@ -338,6 +362,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
338
362
|
|
|
339
363
|
|
|
340
364
|
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
341
369
|
|
|
342
370
|
|
|
343
371
|
|
|
@@ -385,6 +413,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
385
413
|
|
|
386
414
|
|
|
387
415
|
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
388
420
|
|
|
389
421
|
|
|
390
422
|
|
|
@@ -424,6 +456,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
424
456
|
|
|
425
457
|
|
|
426
458
|
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
427
463
|
|
|
428
464
|
|
|
429
465
|
|
|
@@ -460,6 +496,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
460
496
|
|
|
461
497
|
|
|
462
498
|
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
463
503
|
|
|
464
504
|
|
|
465
505
|
|
|
@@ -497,6 +537,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
497
537
|
|
|
498
538
|
|
|
499
539
|
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
500
544
|
|
|
501
545
|
|
|
502
546
|
|
|
@@ -537,6 +581,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
537
581
|
|
|
538
582
|
|
|
539
583
|
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
540
588
|
|
|
541
589
|
|
|
542
590
|
|
|
@@ -577,6 +625,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
577
625
|
|
|
578
626
|
|
|
579
627
|
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
|
|
580
632
|
|
|
581
633
|
|
|
582
634
|
|
|
@@ -614,6 +666,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
614
666
|
|
|
615
667
|
|
|
616
668
|
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
617
673
|
|
|
618
674
|
|
|
619
675
|
|
|
@@ -651,6 +707,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
651
707
|
|
|
652
708
|
|
|
653
709
|
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
|
|
654
714
|
|
|
655
715
|
|
|
656
716
|
|
|
@@ -691,6 +751,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
691
751
|
|
|
692
752
|
|
|
693
753
|
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
|
|
694
758
|
|
|
695
759
|
|
|
696
760
|
|
|
@@ -728,6 +792,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
728
792
|
|
|
729
793
|
|
|
730
794
|
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
731
799
|
|
|
732
800
|
|
|
733
801
|
|
|
@@ -765,6 +833,10 @@ export declare class SkipList<K = any, V = any, R = [K, V]> extends IterableEntr
|
|
|
765
833
|
|
|
766
834
|
|
|
767
835
|
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
768
840
|
|
|
769
841
|
|
|
770
842
|
|
|
@@ -168,6 +168,10 @@ export declare class Matrix {
|
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
171
175
|
|
|
172
176
|
|
|
173
177
|
|
|
@@ -228,6 +232,10 @@ export declare class Matrix {
|
|
|
228
232
|
|
|
229
233
|
|
|
230
234
|
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
231
239
|
|
|
232
240
|
|
|
233
241
|
|
|
@@ -280,6 +288,10 @@ export declare class Matrix {
|
|
|
280
288
|
|
|
281
289
|
|
|
282
290
|
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
283
295
|
|
|
284
296
|
|
|
285
297
|
|
|
@@ -341,6 +353,10 @@ export declare class Matrix {
|
|
|
341
353
|
|
|
342
354
|
|
|
343
355
|
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
344
360
|
|
|
345
361
|
|
|
346
362
|
|
|
@@ -385,6 +401,10 @@ export declare class Matrix {
|
|
|
385
401
|
|
|
386
402
|
|
|
387
403
|
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
388
408
|
|
|
389
409
|
|
|
390
410
|
|
|
@@ -444,6 +464,10 @@ export declare class Matrix {
|
|
|
444
464
|
|
|
445
465
|
|
|
446
466
|
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
447
471
|
|
|
448
472
|
|
|
449
473
|
|
|
@@ -499,6 +523,10 @@ export declare class Matrix {
|
|
|
499
523
|
|
|
500
524
|
|
|
501
525
|
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
|
|
502
530
|
|
|
503
531
|
|
|
504
532
|
|
|
@@ -547,6 +575,10 @@ export declare class Matrix {
|
|
|
547
575
|
|
|
548
576
|
|
|
549
577
|
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
|
|
550
582
|
|
|
551
583
|
|
|
552
584
|
|
|
@@ -192,6 +192,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
192
192
|
|
|
193
193
|
|
|
194
194
|
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
195
199
|
|
|
196
200
|
|
|
197
201
|
|
|
@@ -243,6 +247,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
243
247
|
|
|
244
248
|
|
|
245
249
|
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
246
254
|
|
|
247
255
|
|
|
248
256
|
|
|
@@ -297,6 +305,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
297
305
|
|
|
298
306
|
|
|
299
307
|
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
300
312
|
|
|
301
313
|
|
|
302
314
|
|
|
@@ -352,6 +364,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
352
364
|
|
|
353
365
|
|
|
354
366
|
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
355
371
|
|
|
356
372
|
|
|
357
373
|
|
|
@@ -394,6 +410,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
394
410
|
|
|
395
411
|
|
|
396
412
|
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
397
417
|
|
|
398
418
|
|
|
399
419
|
|
|
@@ -437,6 +457,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
437
457
|
|
|
438
458
|
|
|
439
459
|
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
440
464
|
|
|
441
465
|
|
|
442
466
|
|
|
@@ -501,6 +525,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
501
525
|
|
|
502
526
|
|
|
503
527
|
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
|
|
504
532
|
|
|
505
533
|
|
|
506
534
|
|
|
@@ -540,6 +568,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
540
568
|
|
|
541
569
|
|
|
542
570
|
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
543
575
|
|
|
544
576
|
|
|
545
577
|
|
|
@@ -580,6 +612,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
580
612
|
|
|
581
613
|
|
|
582
614
|
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
|
|
583
619
|
|
|
584
620
|
|
|
585
621
|
|
|
@@ -669,6 +705,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
669
705
|
|
|
670
706
|
|
|
671
707
|
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
|
|
672
712
|
|
|
673
713
|
|
|
674
714
|
|
|
@@ -725,6 +765,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
725
765
|
|
|
726
766
|
|
|
727
767
|
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
728
772
|
|
|
729
773
|
|
|
730
774
|
|
|
@@ -799,6 +843,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
799
843
|
|
|
800
844
|
|
|
801
845
|
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
802
850
|
|
|
803
851
|
|
|
804
852
|
|
|
@@ -842,6 +890,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
842
890
|
|
|
843
891
|
|
|
844
892
|
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
|
|
845
897
|
|
|
846
898
|
|
|
847
899
|
|
|
@@ -886,6 +938,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
886
938
|
|
|
887
939
|
|
|
888
940
|
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
|
|
889
945
|
|
|
890
946
|
|
|
891
947
|
|
|
@@ -938,6 +994,10 @@ export declare class Deque<E = any, R = any> extends LinearBase<E, R> {
|
|
|
938
994
|
|
|
939
995
|
|
|
940
996
|
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
|
|
941
1001
|
|
|
942
1002
|
|
|
943
1003
|
|
|
@@ -153,6 +153,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
153
153
|
|
|
154
154
|
|
|
155
155
|
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
156
160
|
|
|
157
161
|
|
|
158
162
|
|
|
@@ -197,6 +201,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
197
201
|
|
|
198
202
|
|
|
199
203
|
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
200
208
|
|
|
201
209
|
|
|
202
210
|
|
|
@@ -253,6 +261,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
253
261
|
|
|
254
262
|
|
|
255
263
|
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
256
268
|
|
|
257
269
|
|
|
258
270
|
|
|
@@ -309,6 +321,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
309
321
|
|
|
310
322
|
|
|
311
323
|
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
312
328
|
|
|
313
329
|
|
|
314
330
|
|
|
@@ -363,6 +379,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
363
379
|
|
|
364
380
|
|
|
365
381
|
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
366
386
|
|
|
367
387
|
|
|
368
388
|
|
|
@@ -412,6 +432,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
412
432
|
|
|
413
433
|
|
|
414
434
|
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
415
439
|
|
|
416
440
|
|
|
417
441
|
|
|
@@ -452,6 +476,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
452
476
|
|
|
453
477
|
|
|
454
478
|
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
455
483
|
|
|
456
484
|
|
|
457
485
|
|
|
@@ -521,6 +549,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
521
549
|
|
|
522
550
|
|
|
523
551
|
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
|
|
524
556
|
|
|
525
557
|
|
|
526
558
|
|
|
@@ -560,6 +592,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
560
592
|
|
|
561
593
|
|
|
562
594
|
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
563
599
|
|
|
564
600
|
|
|
565
601
|
|
|
@@ -611,6 +647,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
611
647
|
|
|
612
648
|
|
|
613
649
|
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
|
|
614
654
|
|
|
615
655
|
|
|
616
656
|
|
|
@@ -655,6 +695,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
655
695
|
|
|
656
696
|
|
|
657
697
|
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
|
|
658
702
|
|
|
659
703
|
|
|
660
704
|
|
|
@@ -699,6 +743,10 @@ export declare class Queue<E = any, R = any> extends LinearBase<E, R> {
|
|
|
699
743
|
|
|
700
744
|
|
|
701
745
|
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
702
750
|
|
|
703
751
|
|
|
704
752
|
|