data-structure-typed 1.31.0 → 1.32.0

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 (246) hide show
  1. package/.gitattributes +112 -0
  2. package/CHANGELOG.md +1 -1
  3. package/CODE-OF-CONDUCT.md +80 -0
  4. package/COMMANDS.md +28 -0
  5. package/SECURITY.md +15 -0
  6. package/coverage/clover.xml +3393 -0
  7. package/coverage/coverage-final.json +67 -0
  8. package/coverage/lcov-report/base.css +224 -0
  9. package/coverage/lcov-report/block-navigation.js +87 -0
  10. package/coverage/lcov-report/favicon.png +0 -0
  11. package/coverage/lcov-report/index.html +386 -0
  12. package/coverage/lcov-report/prettify.css +1 -0
  13. package/coverage/lcov-report/prettify.js +2 -0
  14. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  15. package/coverage/lcov-report/sorter.js +196 -0
  16. package/coverage/lcov-report/src/data-structures/binary-tree/aa-tree.ts.html +88 -0
  17. package/coverage/lcov-report/src/data-structures/binary-tree/abstract-binary-tree.ts.html +4966 -0
  18. package/coverage/lcov-report/src/data-structures/binary-tree/avl-tree.ts.html +1015 -0
  19. package/coverage/lcov-report/src/data-structures/binary-tree/b-tree.ts.html +88 -0
  20. package/coverage/lcov-report/src/data-structures/binary-tree/binary-indexed-tree.ts.html +313 -0
  21. package/coverage/lcov-report/src/data-structures/binary-tree/binary-tree.ts.html +226 -0
  22. package/coverage/lcov-report/src/data-structures/binary-tree/bst.ts.html +1714 -0
  23. package/coverage/lcov-report/src/data-structures/binary-tree/index.html +296 -0
  24. package/coverage/lcov-report/src/data-structures/binary-tree/index.ts.html +121 -0
  25. package/coverage/lcov-report/src/data-structures/binary-tree/rb-tree.ts.html +388 -0
  26. package/coverage/lcov-report/src/data-structures/binary-tree/segment-tree.ts.html +811 -0
  27. package/coverage/lcov-report/src/data-structures/binary-tree/splay-tree.ts.html +88 -0
  28. package/coverage/lcov-report/src/data-structures/binary-tree/tree-multiset.ts.html +2185 -0
  29. package/coverage/lcov-report/src/data-structures/binary-tree/two-three-tree.ts.html +88 -0
  30. package/coverage/lcov-report/src/data-structures/graph/abstract-graph.ts.html +3205 -0
  31. package/coverage/lcov-report/src/data-structures/graph/directed-graph.ts.html +1495 -0
  32. package/coverage/lcov-report/src/data-structures/graph/index.html +176 -0
  33. package/coverage/lcov-report/src/data-structures/graph/index.ts.html +97 -0
  34. package/coverage/lcov-report/src/data-structures/graph/map-graph.ts.html +472 -0
  35. package/coverage/lcov-report/src/data-structures/graph/undirected-graph.ts.html +907 -0
  36. package/coverage/lcov-report/src/data-structures/hash/coordinate-map.ts.html +286 -0
  37. package/coverage/lcov-report/src/data-structures/hash/coordinate-set.ts.html +253 -0
  38. package/coverage/lcov-report/src/data-structures/hash/hash-table.ts.html +88 -0
  39. package/coverage/lcov-report/src/data-structures/hash/index.html +206 -0
  40. package/coverage/lcov-report/src/data-structures/hash/index.ts.html +103 -0
  41. package/coverage/lcov-report/src/data-structures/hash/pair.ts.html +88 -0
  42. package/coverage/lcov-report/src/data-structures/hash/tree-map.ts.html +88 -0
  43. package/coverage/lcov-report/src/data-structures/hash/tree-set.ts.html +88 -0
  44. package/coverage/lcov-report/src/data-structures/heap/heap.ts.html +721 -0
  45. package/coverage/lcov-report/src/data-structures/heap/index.html +161 -0
  46. package/coverage/lcov-report/src/data-structures/heap/index.ts.html +94 -0
  47. package/coverage/lcov-report/src/data-structures/heap/max-heap.ts.html +178 -0
  48. package/coverage/lcov-report/src/data-structures/heap/min-heap.ts.html +181 -0
  49. package/coverage/lcov-report/src/data-structures/index.html +116 -0
  50. package/coverage/lcov-report/src/data-structures/index.ts.html +118 -0
  51. package/coverage/lcov-report/src/data-structures/linked-list/doubly-linked-list.ts.html +1804 -0
  52. package/coverage/lcov-report/src/data-structures/linked-list/index.html +161 -0
  53. package/coverage/lcov-report/src/data-structures/linked-list/index.ts.html +94 -0
  54. package/coverage/lcov-report/src/data-structures/linked-list/singly-linked-list.ts.html +1588 -0
  55. package/coverage/lcov-report/src/data-structures/linked-list/skip-linked-list.ts.html +88 -0
  56. package/coverage/lcov-report/src/data-structures/matrix/index.html +176 -0
  57. package/coverage/lcov-report/src/data-structures/matrix/index.ts.html +97 -0
  58. package/coverage/lcov-report/src/data-structures/matrix/matrix.ts.html +166 -0
  59. package/coverage/lcov-report/src/data-structures/matrix/matrix2d.ts.html +721 -0
  60. package/coverage/lcov-report/src/data-structures/matrix/navigator.ts.html +448 -0
  61. package/coverage/lcov-report/src/data-structures/matrix/vector2d.ts.html +1033 -0
  62. package/coverage/lcov-report/src/data-structures/priority-queue/index.html +161 -0
  63. package/coverage/lcov-report/src/data-structures/priority-queue/index.ts.html +94 -0
  64. package/coverage/lcov-report/src/data-structures/priority-queue/max-priority-queue.ts.html +253 -0
  65. package/coverage/lcov-report/src/data-structures/priority-queue/min-priority-queue.ts.html +256 -0
  66. package/coverage/lcov-report/src/data-structures/priority-queue/priority-queue.ts.html +1162 -0
  67. package/coverage/lcov-report/src/data-structures/queue/deque.ts.html +976 -0
  68. package/coverage/lcov-report/src/data-structures/queue/index.html +146 -0
  69. package/coverage/lcov-report/src/data-structures/queue/index.ts.html +91 -0
  70. package/coverage/lcov-report/src/data-structures/queue/queue.ts.html +658 -0
  71. package/coverage/lcov-report/src/data-structures/stack/index.html +131 -0
  72. package/coverage/lcov-report/src/data-structures/stack/index.ts.html +88 -0
  73. package/coverage/lcov-report/src/data-structures/stack/stack.ts.html +379 -0
  74. package/coverage/lcov-report/src/data-structures/tree/index.html +131 -0
  75. package/coverage/lcov-report/src/data-structures/tree/index.ts.html +88 -0
  76. package/coverage/lcov-report/src/data-structures/tree/tree.ts.html +292 -0
  77. package/coverage/lcov-report/src/data-structures/trie/index.html +131 -0
  78. package/coverage/lcov-report/src/data-structures/trie/index.ts.html +88 -0
  79. package/coverage/lcov-report/src/data-structures/trie/trie.ts.html +760 -0
  80. package/coverage/lcov-report/src/index.html +116 -0
  81. package/coverage/lcov-report/src/index.ts.html +97 -0
  82. package/coverage/lcov-report/src/interfaces/index.html +116 -0
  83. package/coverage/lcov-report/src/interfaces/index.ts.html +130 -0
  84. package/coverage/lcov-report/src/types/data-structures/abstract-binary-tree.ts.html +235 -0
  85. package/coverage/lcov-report/src/types/data-structures/bst.ts.html +124 -0
  86. package/coverage/lcov-report/src/types/data-structures/directed-graph.ts.html +109 -0
  87. package/coverage/lcov-report/src/types/data-structures/index.html +176 -0
  88. package/coverage/lcov-report/src/types/data-structures/index.ts.html +130 -0
  89. package/coverage/lcov-report/src/types/data-structures/rb-tree.ts.html +106 -0
  90. package/coverage/lcov-report/src/types/index.html +116 -0
  91. package/coverage/lcov-report/src/types/index.ts.html +94 -0
  92. package/coverage/lcov-report/src/types/utils/index.html +116 -0
  93. package/coverage/lcov-report/src/types/utils/index.ts.html +91 -0
  94. package/coverage/lcov-report/src/utils/index.html +131 -0
  95. package/coverage/lcov-report/src/utils/index.ts.html +88 -0
  96. package/coverage/lcov-report/src/utils/utils.ts.html +322 -0
  97. package/coverage/lcov-report/test/utils/index.html +146 -0
  98. package/coverage/lcov-report/test/utils/index.ts.html +91 -0
  99. package/coverage/lcov-report/test/utils/magnitude.ts.html +148 -0
  100. package/coverage/lcov-report/test/utils/number.ts.html +94 -0
  101. package/coverage/lcov.info +6676 -0
  102. package/dist/data-structures/binary-tree/abstract-binary-tree.js.map +1 -1
  103. package/docs/classes/AVLTree.html +205 -282
  104. package/docs/classes/AVLTreeNode.html +15 -15
  105. package/docs/classes/AaTree.html +1 -1
  106. package/docs/classes/AbstractBinaryTree.html +198 -275
  107. package/docs/classes/AbstractBinaryTreeNode.html +21 -21
  108. package/docs/classes/AbstractEdge.html +11 -11
  109. package/docs/classes/AbstractGraph.html +36 -36
  110. package/docs/classes/AbstractVertex.html +8 -8
  111. package/docs/classes/ArrayDeque.html +14 -14
  112. package/docs/classes/BST.html +198 -275
  113. package/docs/classes/BSTNode.html +15 -15
  114. package/docs/classes/BTree.html +1 -1
  115. package/docs/classes/BinaryIndexedTree.html +9 -9
  116. package/docs/classes/BinaryTree.html +191 -268
  117. package/docs/classes/BinaryTreeNode.html +15 -15
  118. package/docs/classes/Character.html +4 -4
  119. package/docs/classes/CoordinateMap.html +9 -9
  120. package/docs/classes/CoordinateSet.html +8 -8
  121. package/docs/classes/Deque.html +34 -34
  122. package/docs/classes/DirectedEdge.html +15 -15
  123. package/docs/classes/DirectedGraph.html +52 -52
  124. package/docs/classes/DirectedVertex.html +6 -6
  125. package/docs/classes/DoublyLinkedList.html +37 -37
  126. package/docs/classes/DoublyLinkedListNode.html +11 -11
  127. package/docs/classes/HashTable.html +1 -1
  128. package/docs/classes/Heap.html +26 -26
  129. package/docs/classes/HeapItem.html +8 -8
  130. package/docs/classes/LinkedListQueue.html +35 -35
  131. package/docs/classes/MapEdge.html +13 -13
  132. package/docs/classes/MapGraph.html +56 -56
  133. package/docs/classes/MapVertex.html +12 -12
  134. package/docs/classes/Matrix2D.html +16 -16
  135. package/docs/classes/MatrixNTI2D.html +4 -4
  136. package/docs/classes/MaxHeap.html +26 -26
  137. package/docs/classes/MaxPriorityQueue.html +34 -34
  138. package/docs/classes/MinHeap.html +26 -26
  139. package/docs/classes/MinPriorityQueue.html +34 -34
  140. package/docs/classes/Navigator.html +10 -10
  141. package/docs/classes/ObjectDeque.html +25 -25
  142. package/docs/classes/Pair.html +1 -1
  143. package/docs/classes/PriorityQueue.html +32 -32
  144. package/docs/classes/Queue.html +22 -22
  145. package/docs/classes/RBTree.html +198 -275
  146. package/docs/classes/RBTreeNode.html +18 -18
  147. package/docs/classes/SegmentTree.html +17 -17
  148. package/docs/classes/SegmentTreeNode.html +20 -20
  149. package/docs/classes/SinglyLinkedList.html +35 -35
  150. package/docs/classes/SinglyLinkedListNode.html +8 -8
  151. package/docs/classes/SkipLinkedList.html +1 -1
  152. package/docs/classes/SplayTree.html +1 -1
  153. package/docs/classes/Stack.html +12 -12
  154. package/docs/classes/TreeMap.html +1 -1
  155. package/docs/classes/TreeMultiset.html +219 -296
  156. package/docs/classes/TreeMultisetNode.html +18 -18
  157. package/docs/classes/TreeNode.html +13 -13
  158. package/docs/classes/TreeSet.html +1 -1
  159. package/docs/classes/Trie.html +13 -13
  160. package/docs/classes/TrieNode.html +11 -11
  161. package/docs/classes/TwoThreeTree.html +1 -1
  162. package/docs/classes/UndirectedEdge.html +12 -12
  163. package/docs/classes/UndirectedGraph.html +40 -40
  164. package/docs/classes/UndirectedVertex.html +6 -6
  165. package/docs/classes/Vector2D.html +28 -28
  166. package/docs/enums/CP.html +4 -4
  167. package/docs/enums/FamilyPosition.html +8 -8
  168. package/docs/enums/LoopType.html +3 -3
  169. package/docs/enums/RBColor.html +3 -3
  170. package/docs/enums/TopologicalProperty.html +4 -4
  171. package/docs/functions/arrayRemove.html +1 -1
  172. package/docs/functions/isThunk.html +1 -1
  173. package/docs/functions/toThunk.html +1 -1
  174. package/docs/functions/trampoline.html +1 -1
  175. package/docs/functions/trampolineAsync.html +1 -1
  176. package/docs/functions/uuidV4.html +1 -1
  177. package/docs/interfaces/IAVLTree.html +77 -77
  178. package/docs/interfaces/IAbstractBinaryTree.html +72 -72
  179. package/docs/interfaces/IAbstractBinaryTreeNode.html +14 -14
  180. package/docs/interfaces/IAbstractGraph.html +15 -15
  181. package/docs/interfaces/IBST.html +77 -77
  182. package/docs/interfaces/IDirectedGraph.html +23 -23
  183. package/docs/interfaces/IRBTree.html +77 -77
  184. package/docs/interfaces/IUNDirectedGraph.html +16 -16
  185. package/docs/types/AVLTreeNodeNested.html +1 -1
  186. package/docs/types/AVLTreeOptions.html +1 -1
  187. package/docs/types/AbstractBinaryTreeNodeNested.html +1 -1
  188. package/docs/types/AbstractBinaryTreeNodeProperties.html +1 -1
  189. package/docs/types/AbstractBinaryTreeNodeProperty.html +1 -1
  190. package/docs/types/AbstractBinaryTreeOptions.html +1 -1
  191. package/docs/types/BSTComparator.html +1 -1
  192. package/docs/types/BSTNodeNested.html +1 -1
  193. package/docs/types/BSTOptions.html +1 -1
  194. package/docs/types/BinaryTreeDeletedResult.html +1 -1
  195. package/docs/types/BinaryTreeNodeId.html +1 -1
  196. package/docs/types/BinaryTreeNodeNested.html +1 -1
  197. package/docs/types/BinaryTreeNodePropertyName.html +1 -1
  198. package/docs/types/BinaryTreeOptions.html +1 -1
  199. package/docs/types/DFSOrderPattern.html +1 -1
  200. package/docs/types/DijkstraResult.html +1 -1
  201. package/docs/types/Direction.html +1 -1
  202. package/docs/types/DummyAny.html +1 -1
  203. package/docs/types/EdgeId.html +1 -1
  204. package/docs/types/HeapOptions.html +1 -1
  205. package/docs/types/IAVLTreeNode.html +1 -1
  206. package/docs/types/IBSTNode.html +1 -1
  207. package/docs/types/IBinaryTree.html +1 -1
  208. package/docs/types/IBinaryTreeNode.html +1 -1
  209. package/docs/types/IRBTreeNode.html +1 -1
  210. package/docs/types/ITreeMultiset.html +1 -1
  211. package/docs/types/ITreeMultisetNode.html +1 -1
  212. package/docs/types/KeyValueObject.html +1 -1
  213. package/docs/types/KeyValueObjectWithId.html +1 -1
  214. package/docs/types/MapGraphCoordinate.html +1 -1
  215. package/docs/types/NavigatorParams.html +1 -1
  216. package/docs/types/NodeOrPropertyName.html +1 -1
  217. package/docs/types/NonNumberNonObjectButDefined.html +1 -1
  218. package/docs/types/ObjectWithNonNumberId.html +1 -1
  219. package/docs/types/ObjectWithNumberId.html +1 -1
  220. package/docs/types/ObjectWithoutId.html +1 -1
  221. package/docs/types/PriorityQueueComparator.html +1 -1
  222. package/docs/types/PriorityQueueDFSOrderPattern.html +1 -1
  223. package/docs/types/PriorityQueueOptions.html +1 -1
  224. package/docs/types/RBTreeNodeNested.html +1 -1
  225. package/docs/types/RBTreeOptions.html +1 -1
  226. package/docs/types/RestrictValById.html +1 -1
  227. package/docs/types/SegmentTreeNodeVal.html +1 -1
  228. package/docs/types/SpecifyOptional.html +1 -1
  229. package/docs/types/Thunk.html +1 -1
  230. package/docs/types/ToThunkFn.html +1 -1
  231. package/docs/types/TopologicalStatus.html +1 -1
  232. package/docs/types/TreeMultisetNodeNested.html +1 -1
  233. package/docs/types/TreeMultisetOptions.html +1 -1
  234. package/docs/types/TrlAsyncFn.html +1 -1
  235. package/docs/types/TrlFn.html +1 -1
  236. package/docs/types/Turning.html +1 -1
  237. package/docs/types/VertexId.html +1 -1
  238. package/docs/variables/THUNK_SYMBOL.html +1 -1
  239. package/jest.config.js +5 -3
  240. package/lib/data-structures/binary-tree/abstract-binary-tree.d.ts +169 -2
  241. package/lib/data-structures/binary-tree/abstract-binary-tree.js +31 -47
  242. package/package.json +26 -23
  243. package/test/unit/data-structures/linked-list/singly-linked-list.test.ts +1 -1
  244. package/test/unit/data-structures/priority-queue/max-priority-queue.test.ts +3 -1
  245. package/tsconfig.json +1 -1
  246. package/umd/bundle.min.js.map +1 -1
@@ -27,7 +27,7 @@
27
27
  <ul class="tsd-hierarchy">
28
28
  <li><a href="LinkedListQueue.html" class="tsd-signature-type tsd-kind-class">LinkedListQueue</a></li></ul></li></ul></section><aside class="tsd-sources">
29
29
  <ul>
30
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L40">src/data-structures/linked-list/singly-linked-list.ts:40</a></li></ul></aside>
30
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L40">src/data-structures/linked-list/singly-linked-list.ts:40</a></li></ul></aside>
31
31
  <section class="tsd-panel-group tsd-index-group">
32
32
  <section class="tsd-panel tsd-index-panel">
33
33
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -91,24 +91,24 @@
91
91
  <h4 class="tsd-returns-title">Returns <a href="SinglyLinkedList.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedList</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4>
92
92
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
93
93
  <ul>
94
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L44">src/data-structures/linked-list/singly-linked-list.ts:44</a></li></ul></aside></li></ul></section></section>
94
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L44">src/data-structures/linked-list/singly-linked-list.ts:44</a></li></ul></aside></li></ul></section></section>
95
95
  <section class="tsd-panel-group tsd-member-group">
96
96
  <h2>Properties</h2>
97
97
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_head" class="tsd-anchor"></a>
98
98
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_head</span><a href="#_head" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
99
99
  <div class="tsd-signature"><span class="tsd-kind-property">_head</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></div><aside class="tsd-sources">
100
100
  <ul>
101
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L50">src/data-structures/linked-list/singly-linked-list.ts:50</a></li></ul></aside></section>
101
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L50">src/data-structures/linked-list/singly-linked-list.ts:50</a></li></ul></aside></section>
102
102
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_length" class="tsd-anchor"></a>
103
103
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_length</span><a href="#_length" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
104
104
  <div class="tsd-signature"><span class="tsd-kind-property">_length</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
105
105
  <ul>
106
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L70">src/data-structures/linked-list/singly-linked-list.ts:70</a></li></ul></aside></section>
106
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L70">src/data-structures/linked-list/singly-linked-list.ts:70</a></li></ul></aside></section>
107
107
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_tail" class="tsd-anchor"></a>
108
108
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_tail</span><a href="#_tail" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
109
109
  <div class="tsd-signature"><span class="tsd-kind-property">_tail</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></div><aside class="tsd-sources">
110
110
  <ul>
111
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L60">src/data-structures/linked-list/singly-linked-list.ts:60</a></li></ul></aside></section></section>
111
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L60">src/data-structures/linked-list/singly-linked-list.ts:60</a></li></ul></aside></section></section>
112
112
  <section class="tsd-panel-group tsd-member-group">
113
113
  <h2>Accessors</h2>
114
114
  <section class="tsd-panel tsd-member"><a id="head" class="tsd-anchor"></a>
@@ -118,7 +118,7 @@
118
118
  <li class="tsd-description">
119
119
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
120
120
  <ul>
121
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L52">src/data-structures/linked-list/singly-linked-list.ts:52</a></li></ul></aside></li>
121
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L52">src/data-structures/linked-list/singly-linked-list.ts:52</a></li></ul></aside></li>
122
122
  <li class="tsd-signature" id="head.head-2"><span class="tsd-signature-symbol">set</span> head<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
123
123
  <li class="tsd-description">
124
124
  <div class="tsd-parameters">
@@ -128,7 +128,7 @@
128
128
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
129
129
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
130
130
  <ul>
131
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L56">src/data-structures/linked-list/singly-linked-list.ts:56</a></li></ul></aside></li></ul></section>
131
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L56">src/data-structures/linked-list/singly-linked-list.ts:56</a></li></ul></aside></li></ul></section>
132
132
  <section class="tsd-panel tsd-member"><a id="length" class="tsd-anchor"></a>
133
133
  <h3 class="tsd-anchor-link"><span>length</span><a href="#length" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
134
134
  <ul class="tsd-signatures">
@@ -136,7 +136,7 @@
136
136
  <li class="tsd-description">
137
137
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
138
138
  <ul>
139
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L72">src/data-structures/linked-list/singly-linked-list.ts:72</a></li></ul></aside></li></ul></section>
139
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L72">src/data-structures/linked-list/singly-linked-list.ts:72</a></li></ul></aside></li></ul></section>
140
140
  <section class="tsd-panel tsd-member"><a id="tail" class="tsd-anchor"></a>
141
141
  <h3 class="tsd-anchor-link"><span>tail</span><a href="#tail" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
142
142
  <ul class="tsd-signatures">
@@ -144,7 +144,7 @@
144
144
  <li class="tsd-description">
145
145
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
146
146
  <ul>
147
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L62">src/data-structures/linked-list/singly-linked-list.ts:62</a></li></ul></aside></li>
147
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L62">src/data-structures/linked-list/singly-linked-list.ts:62</a></li></ul></aside></li>
148
148
  <li class="tsd-signature" id="tail.tail-2"><span class="tsd-signature-symbol">set</span> tail<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
149
149
  <li class="tsd-description">
150
150
  <div class="tsd-parameters">
@@ -154,7 +154,7 @@
154
154
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
155
155
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
156
156
  <ul>
157
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L66">src/data-structures/linked-list/singly-linked-list.ts:66</a></li></ul></aside></li></ul></section></section>
157
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L66">src/data-structures/linked-list/singly-linked-list.ts:66</a></li></ul></aside></li></ul></section></section>
158
158
  <section class="tsd-panel-group tsd-member-group">
159
159
  <h2>Methods</h2>
160
160
  <section class="tsd-panel tsd-member"><a id="_iterator_" class="tsd-anchor"></a>
@@ -164,7 +164,7 @@
164
164
  <li class="tsd-description">
165
165
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type ">Generator</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
166
166
  <ul>
167
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L493">src/data-structures/linked-list/singly-linked-list.ts:493</a></li></ul></aside></li></ul></section>
167
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L493">src/data-structures/linked-list/singly-linked-list.ts:493</a></li></ul></aside></li></ul></section>
168
168
  <section class="tsd-panel tsd-member"><a id="clear" class="tsd-anchor"></a>
169
169
  <h3 class="tsd-anchor-link"><span>clear</span><a href="#clear" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
170
170
  <ul class="tsd-signatures">
@@ -175,7 +175,7 @@
175
175
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
176
176
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
177
177
  <ul>
178
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L300">src/data-structures/linked-list/singly-linked-list.ts:300</a></li></ul></aside></li></ul></section>
178
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L300">src/data-structures/linked-list/singly-linked-list.ts:300</a></li></ul></aside></li></ul></section>
179
179
  <section class="tsd-panel tsd-member"><a id="countOccurrences" class="tsd-anchor"></a>
180
180
  <h3 class="tsd-anchor-link"><span>count<wbr/>Occurrences</span><a href="#countOccurrences" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
181
181
  <ul class="tsd-signatures">
@@ -195,7 +195,7 @@
195
195
 
196
196
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
197
197
  <ul>
198
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L479">src/data-structures/linked-list/singly-linked-list.ts:479</a></li></ul></aside></li></ul></section>
198
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L479">src/data-structures/linked-list/singly-linked-list.ts:479</a></li></ul></aside></li></ul></section>
199
199
  <section class="tsd-panel tsd-member"><a id="delete" class="tsd-anchor"></a>
200
200
  <h3 class="tsd-anchor-link"><span>delete</span><a href="#delete" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
201
201
  <ul class="tsd-signatures">
@@ -217,7 +217,7 @@ successfully deleted from the linked list, and <code>false</code> if the value o
217
217
 
218
218
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
219
219
  <ul>
220
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L217">src/data-structures/linked-list/singly-linked-list.ts:217</a></li></ul></aside></li>
220
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L217">src/data-structures/linked-list/singly-linked-list.ts:217</a></li></ul></aside></li>
221
221
  <li class="tsd-signature tsd-anchor-link" id="delete.delete-2"><span class="tsd-kind-call-signature">delete</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">valueOrNode</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#delete.delete-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
222
222
  <li class="tsd-description">
223
223
  <div class="tsd-comment tsd-typography"><p>The delete function removes a node with a specific value from a singly linked list.</p>
@@ -236,7 +236,7 @@ successfully deleted from the linked list, and <code>false</code> if the value o
236
236
 
237
237
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
238
238
  <ul>
239
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L218">src/data-structures/linked-list/singly-linked-list.ts:218</a></li></ul></aside></li></ul></section>
239
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L218">src/data-structures/linked-list/singly-linked-list.ts:218</a></li></ul></aside></li></ul></section>
240
240
  <section class="tsd-panel tsd-member"><a id="deleteAt" class="tsd-anchor"></a>
241
241
  <h3 class="tsd-anchor-link"><span>delete<wbr/>At</span><a href="#deleteAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
242
242
  <ul class="tsd-signatures">
@@ -258,7 +258,7 @@ bounds.</p>
258
258
 
259
259
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
260
260
  <ul>
261
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L205">src/data-structures/linked-list/singly-linked-list.ts:205</a></li></ul></aside></li></ul></section>
261
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L205">src/data-structures/linked-list/singly-linked-list.ts:205</a></li></ul></aside></li></ul></section>
262
262
  <section class="tsd-panel tsd-member"><a id="find" class="tsd-anchor"></a>
263
263
  <h3 class="tsd-anchor-link"><span>find</span><a href="#find" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
264
264
  <ul class="tsd-signatures">
@@ -291,7 +291,7 @@ the callback function. If no element satisfies the condition, it returns <code>n
291
291
 
292
292
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
293
293
  <ul>
294
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L348">src/data-structures/linked-list/singly-linked-list.ts:348</a></li></ul></aside></li></ul></section>
294
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L348">src/data-structures/linked-list/singly-linked-list.ts:348</a></li></ul></aside></li></ul></section>
295
295
  <section class="tsd-panel tsd-member"><a id="findNode" class="tsd-anchor"></a>
296
296
  <h3 class="tsd-anchor-link"><span>find<wbr/>Node</span><a href="#findNode" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
297
297
  <ul class="tsd-signatures">
@@ -313,7 +313,7 @@ the specified value is found, the function returns <code>null</code>.</p>
313
313
 
314
314
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
315
315
  <ul>
316
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L387">src/data-structures/linked-list/singly-linked-list.ts:387</a></li></ul></aside></li></ul></section>
316
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L387">src/data-structures/linked-list/singly-linked-list.ts:387</a></li></ul></aside></li></ul></section>
317
317
  <section class="tsd-panel tsd-member"><a id="getAt" class="tsd-anchor"></a>
318
318
  <h3 class="tsd-anchor-link"><span>get<wbr/>At</span><a href="#getAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
319
319
  <ul class="tsd-signatures">
@@ -335,7 +335,7 @@ retrieve from the list.</p>
335
335
 
336
336
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
337
337
  <ul>
338
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L174">src/data-structures/linked-list/singly-linked-list.ts:174</a></li></ul></aside></li></ul></section>
338
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L174">src/data-structures/linked-list/singly-linked-list.ts:174</a></li></ul></aside></li></ul></section>
339
339
  <section class="tsd-panel tsd-member"><a id="getLength" class="tsd-anchor"></a>
340
340
  <h3 class="tsd-anchor-link"><span>get<wbr/>Length</span><a href="#getLength" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
341
341
  <ul class="tsd-signatures">
@@ -343,7 +343,7 @@ retrieve from the list.</p>
343
343
  <li class="tsd-description">
344
344
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
345
345
  <ul>
346
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L90">src/data-structures/linked-list/singly-linked-list.ts:90</a></li></ul></aside></li></ul></section>
346
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L90">src/data-structures/linked-list/singly-linked-list.ts:90</a></li></ul></aside></li></ul></section>
347
347
  <section class="tsd-panel tsd-member"><a id="getNodeAt" class="tsd-anchor"></a>
348
348
  <h3 class="tsd-anchor-link"><span>get<wbr/>Node<wbr/>At</span><a href="#getNodeAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
349
349
  <ul class="tsd-signatures">
@@ -365,7 +365,7 @@ specified index exists, or <code>null</code> if the index is out of bounds.</p>
365
365
 
366
366
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
367
367
  <ul>
368
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L190">src/data-structures/linked-list/singly-linked-list.ts:190</a></li></ul></aside></li></ul></section>
368
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L190">src/data-structures/linked-list/singly-linked-list.ts:190</a></li></ul></aside></li></ul></section>
369
369
  <section class="tsd-panel tsd-member"><a id="indexOf" class="tsd-anchor"></a>
370
370
  <h3 class="tsd-anchor-link"><span>index<wbr/>Of</span><a href="#indexOf" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
371
371
  <ul class="tsd-signatures">
@@ -386,7 +386,7 @@ value is not found, it returns -1.</p>
386
386
 
387
387
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
388
388
  <ul>
389
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L365">src/data-structures/linked-list/singly-linked-list.ts:365</a></li></ul></aside></li></ul></section>
389
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L365">src/data-structures/linked-list/singly-linked-list.ts:365</a></li></ul></aside></li></ul></section>
390
390
  <section class="tsd-panel tsd-member"><a id="insertAfter" class="tsd-anchor"></a>
391
391
  <h3 class="tsd-anchor-link"><span>insert<wbr/>After</span><a href="#insertAfter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
392
392
  <ul class="tsd-signatures">
@@ -413,7 +413,7 @@ existing value or node, and false if the existing value or node was not found in
413
413
 
414
414
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
415
415
  <ul>
416
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L440">src/data-structures/linked-list/singly-linked-list.ts:440</a></li></ul></aside></li>
416
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L440">src/data-structures/linked-list/singly-linked-list.ts:440</a></li></ul></aside></li>
417
417
  <li class="tsd-signature tsd-anchor-link" id="insertAfter.insertAfter-2"><span class="tsd-kind-call-signature">insert<wbr/>After</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">existingValueOrNode</span>, <span class="tsd-kind-parameter">newValue</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#insertAfter.insertAfter-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
418
418
  <li class="tsd-description">
419
419
  <div class="tsd-comment tsd-typography"><p>The <code>insertAfter</code> function inserts a new node with a given value after an existing node in a singly linked list.</p>
@@ -437,7 +437,7 @@ existing value or node, and false if the existing value or node was not found in
437
437
 
438
438
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
439
439
  <ul>
440
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L441">src/data-structures/linked-list/singly-linked-list.ts:441</a></li></ul></aside></li></ul></section>
440
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L441">src/data-structures/linked-list/singly-linked-list.ts:441</a></li></ul></aside></li></ul></section>
441
441
  <section class="tsd-panel tsd-member"><a id="insertAt" class="tsd-anchor"></a>
442
442
  <h3 class="tsd-anchor-link"><span>insert<wbr/>At</span><a href="#insertAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
443
443
  <ul class="tsd-signatures">
@@ -465,7 +465,7 @@ if the index is out of bounds.</p>
465
465
 
466
466
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
467
467
  <ul>
468
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L269">src/data-structures/linked-list/singly-linked-list.ts:269</a></li></ul></aside></li></ul></section>
468
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L269">src/data-structures/linked-list/singly-linked-list.ts:269</a></li></ul></aside></li></ul></section>
469
469
  <section class="tsd-panel tsd-member"><a id="insertBefore" class="tsd-anchor"></a>
470
470
  <h3 class="tsd-anchor-link"><span>insert<wbr/>Before</span><a href="#insertBefore" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
471
471
  <ul class="tsd-signatures">
@@ -488,7 +488,7 @@ inserted before the existing value, and <code>false</code> otherwise.</p>
488
488
 
489
489
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
490
490
  <ul>
491
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L400">src/data-structures/linked-list/singly-linked-list.ts:400</a></li></ul></aside></li>
491
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L400">src/data-structures/linked-list/singly-linked-list.ts:400</a></li></ul></aside></li>
492
492
  <li class="tsd-signature tsd-anchor-link" id="insertBefore.insertBefore-2"><span class="tsd-kind-call-signature">insert<wbr/>Before</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">existingValue</span>, <span class="tsd-kind-parameter">newValue</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#insertBefore.insertBefore-2" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
493
493
  <li class="tsd-description">
494
494
  <div class="tsd-comment tsd-typography"><p>The <code>insertBefore</code> function inserts a new value before an existing value in a singly linked list.</p>
@@ -508,7 +508,7 @@ inserted before the existing value, and <code>false</code> otherwise.</p>
508
508
 
509
509
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
510
510
  <ul>
511
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L401">src/data-structures/linked-list/singly-linked-list.ts:401</a></li></ul></aside></li></ul></section>
511
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L401">src/data-structures/linked-list/singly-linked-list.ts:401</a></li></ul></aside></li></ul></section>
512
512
  <section class="tsd-panel tsd-member"><a id="isEmpty" class="tsd-anchor"></a>
513
513
  <h3 class="tsd-anchor-link"><span>is<wbr/>Empty</span><a href="#isEmpty" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
514
514
  <ul class="tsd-signatures">
@@ -521,7 +521,7 @@ whether it is empty or not.</p>
521
521
 
522
522
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
523
523
  <ul>
524
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L293">src/data-structures/linked-list/singly-linked-list.ts:293</a></li></ul></aside></li></ul></section>
524
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L293">src/data-structures/linked-list/singly-linked-list.ts:293</a></li></ul></aside></li></ul></section>
525
525
  <section class="tsd-panel tsd-member"><a id="pop" class="tsd-anchor"></a>
526
526
  <h3 class="tsd-anchor-link"><span>pop</span><a href="#pop" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
527
527
  <ul class="tsd-signatures">
@@ -535,7 +535,7 @@ the linked list is empty, it returns <code>null</code>.</p>
535
535
 
536
536
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
537
537
  <ul>
538
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L117">src/data-structures/linked-list/singly-linked-list.ts:117</a></li></ul></aside></li></ul></section>
538
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L117">src/data-structures/linked-list/singly-linked-list.ts:117</a></li></ul></aside></li></ul></section>
539
539
  <section class="tsd-panel tsd-member"><a id="push" class="tsd-anchor"></a>
540
540
  <h3 class="tsd-anchor-link"><span>push</span><a href="#push" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
541
541
  <ul class="tsd-signatures">
@@ -555,7 +555,7 @@ any type (T) as specified in the generic type declaration of the class or functi
555
555
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
556
556
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
557
557
  <ul>
558
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L99">src/data-structures/linked-list/singly-linked-list.ts:99</a></li></ul></aside></li></ul></section>
558
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L99">src/data-structures/linked-list/singly-linked-list.ts:99</a></li></ul></aside></li></ul></section>
559
559
  <section class="tsd-panel tsd-member"><a id="reverse" class="tsd-anchor"></a>
560
560
  <h3 class="tsd-anchor-link"><span>reverse</span><a href="#reverse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
561
561
  <ul class="tsd-signatures">
@@ -567,7 +567,7 @@ any type (T) as specified in the generic type declaration of the class or functi
567
567
 
568
568
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
569
569
  <ul>
570
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L324">src/data-structures/linked-list/singly-linked-list.ts:324</a></li></ul></aside></li></ul></section>
570
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L324">src/data-structures/linked-list/singly-linked-list.ts:324</a></li></ul></aside></li></ul></section>
571
571
  <section class="tsd-panel tsd-member"><a id="shift" class="tsd-anchor"></a>
572
572
  <h3 class="tsd-anchor-link"><span>shift</span><a href="#shift" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
573
573
  <ul class="tsd-signatures">
@@ -579,7 +579,7 @@ any type (T) as specified in the generic type declaration of the class or functi
579
579
 
580
580
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
581
581
  <ul>
582
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L142">src/data-structures/linked-list/singly-linked-list.ts:142</a></li></ul></aside></li></ul></section>
582
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L142">src/data-structures/linked-list/singly-linked-list.ts:142</a></li></ul></aside></li></ul></section>
583
583
  <section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
584
584
  <h3 class="tsd-anchor-link"><span>to<wbr/>Array</span><a href="#toArray" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
585
585
  <ul class="tsd-signatures">
@@ -591,7 +591,7 @@ any type (T) as specified in the generic type declaration of the class or functi
591
591
 
592
592
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
593
593
  <ul>
594
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L310">src/data-structures/linked-list/singly-linked-list.ts:310</a></li></ul></aside></li></ul></section>
594
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L310">src/data-structures/linked-list/singly-linked-list.ts:310</a></li></ul></aside></li></ul></section>
595
595
  <section class="tsd-panel tsd-member"><a id="unshift" class="tsd-anchor"></a>
596
596
  <h3 class="tsd-anchor-link"><span>unshift</span><a href="#unshift" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
597
597
  <ul class="tsd-signatures">
@@ -611,7 +611,7 @@ linked list.</p>
611
611
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
612
612
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
613
613
  <ul>
614
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L155">src/data-structures/linked-list/singly-linked-list.ts:155</a></li></ul></aside></li></ul></section>
614
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L155">src/data-structures/linked-list/singly-linked-list.ts:155</a></li></ul></aside></li></ul></section>
615
615
  <section class="tsd-panel tsd-member"><a id="fromArray" class="tsd-anchor"></a>
616
616
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>from<wbr/>Array</span><a href="#fromArray" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
617
617
  <ul class="tsd-signatures">
@@ -637,7 +637,7 @@ array.</p>
637
637
 
638
638
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
639
639
  <ul>
640
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L82">src/data-structures/linked-list/singly-linked-list.ts:82</a></li></ul></aside></li></ul></section></section></div>
640
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L82">src/data-structures/linked-list/singly-linked-list.ts:82</a></li></ul></aside></li></ul></section></section></div>
641
641
  <div class="col-sidebar">
642
642
  <div class="page-menu">
643
643
  <div class="tsd-navigation settings">
@@ -35,7 +35,7 @@
35
35
  <ul class="tsd-hierarchy">
36
36
  <li><span class="target">SinglyLinkedListNode</span></li></ul></section><aside class="tsd-sources">
37
37
  <ul>
38
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L8">src/data-structures/linked-list/singly-linked-list.ts:8</a></li></ul></aside>
38
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L8">src/data-structures/linked-list/singly-linked-list.ts:8</a></li></ul></aside>
39
39
  <section class="tsd-panel-group tsd-index-group">
40
40
  <section class="tsd-panel tsd-index-panel">
41
41
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -81,19 +81,19 @@ will be stored in the node of a linked list.</p>
81
81
  <h4 class="tsd-returns-title">Returns <a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4>
82
82
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
83
83
  <ul>
84
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L14">src/data-structures/linked-list/singly-linked-list.ts:14</a></li></ul></aside></li></ul></section></section>
84
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L14">src/data-structures/linked-list/singly-linked-list.ts:14</a></li></ul></aside></li></ul></section></section>
85
85
  <section class="tsd-panel-group tsd-member-group">
86
86
  <h2>Properties</h2>
87
87
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_next" class="tsd-anchor"></a>
88
88
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_next</span><a href="#_next" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
89
89
  <div class="tsd-signature"><span class="tsd-kind-property">_next</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></div><aside class="tsd-sources">
90
90
  <ul>
91
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L29">src/data-structures/linked-list/singly-linked-list.ts:29</a></li></ul></aside></section>
91
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L29">src/data-structures/linked-list/singly-linked-list.ts:29</a></li></ul></aside></section>
92
92
  <section class="tsd-panel tsd-member tsd-is-private"><a id="_val" class="tsd-anchor"></a>
93
93
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>_val</span><a href="#_val" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
94
94
  <div class="tsd-signature"><span class="tsd-kind-property">_val</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span></div><aside class="tsd-sources">
95
95
  <ul>
96
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L19">src/data-structures/linked-list/singly-linked-list.ts:19</a></li></ul></aside></section></section>
96
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L19">src/data-structures/linked-list/singly-linked-list.ts:19</a></li></ul></aside></section></section>
97
97
  <section class="tsd-panel-group tsd-member-group">
98
98
  <h2>Accessors</h2>
99
99
  <section class="tsd-panel tsd-member"><a id="next" class="tsd-anchor"></a>
@@ -103,7 +103,7 @@ will be stored in the node of a linked list.</p>
103
103
  <li class="tsd-description">
104
104
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
105
105
  <ul>
106
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L31">src/data-structures/linked-list/singly-linked-list.ts:31</a></li></ul></aside></li>
106
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L31">src/data-structures/linked-list/singly-linked-list.ts:31</a></li></ul></aside></li>
107
107
  <li class="tsd-signature" id="next.next-2"><span class="tsd-signature-symbol">set</span> next<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
108
108
  <li class="tsd-description">
109
109
  <div class="tsd-parameters">
@@ -113,7 +113,7 @@ will be stored in the node of a linked list.</p>
113
113
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="SinglyLinkedListNode.html" class="tsd-signature-type tsd-kind-class">SinglyLinkedListNode</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
114
114
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
115
115
  <ul>
116
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L35">src/data-structures/linked-list/singly-linked-list.ts:35</a></li></ul></aside></li></ul></section>
116
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L35">src/data-structures/linked-list/singly-linked-list.ts:35</a></li></ul></aside></li></ul></section>
117
117
  <section class="tsd-panel tsd-member"><a id="val" class="tsd-anchor"></a>
118
118
  <h3 class="tsd-anchor-link"><span>val</span><a href="#val" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
119
119
  <ul class="tsd-signatures">
@@ -121,7 +121,7 @@ will be stored in the node of a linked list.</p>
121
121
  <li class="tsd-description">
122
122
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h4><aside class="tsd-sources">
123
123
  <ul>
124
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L21">src/data-structures/linked-list/singly-linked-list.ts:21</a></li></ul></aside></li>
124
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L21">src/data-structures/linked-list/singly-linked-list.ts:21</a></li></ul></aside></li>
125
125
  <li class="tsd-signature" id="val.val-2"><span class="tsd-signature-symbol">set</span> val<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
126
126
  <li class="tsd-description">
127
127
  <div class="tsd-parameters">
@@ -131,7 +131,7 @@ will be stored in the node of a linked list.</p>
131
131
  <h5><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type tsd-kind-type-parameter">T</span></h5></li></ul></div>
132
132
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
133
133
  <ul>
134
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/singly-linked-list.ts#L25">src/data-structures/linked-list/singly-linked-list.ts:25</a></li></ul></aside></li></ul></section></section></div>
134
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/singly-linked-list.ts#L25">src/data-structures/linked-list/singly-linked-list.ts:25</a></li></ul></aside></li></ul></section></section></div>
135
135
  <div class="col-sidebar">
136
136
  <div class="page-menu">
137
137
  <div class="tsd-navigation settings">
@@ -20,7 +20,7 @@
20
20
  <ul class="tsd-hierarchy">
21
21
  <li><span class="target">SkipLinkedList</span></li></ul></section><aside class="tsd-sources">
22
22
  <ul>
23
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/linked-list/skip-linked-list.ts#L1">src/data-structures/linked-list/skip-linked-list.ts:1</a></li></ul></aside>
23
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/linked-list/skip-linked-list.ts#L1">src/data-structures/linked-list/skip-linked-list.ts:1</a></li></ul></aside>
24
24
  <section class="tsd-panel-group tsd-index-group">
25
25
  <section class="tsd-panel tsd-index-panel">
26
26
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -20,7 +20,7 @@
20
20
  <ul class="tsd-hierarchy">
21
21
  <li><span class="target">SplayTree</span></li></ul></section><aside class="tsd-sources">
22
22
  <ul>
23
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/binary-tree/splay-tree.ts#L1">src/data-structures/binary-tree/splay-tree.ts:1</a></li></ul></aside>
23
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/binary-tree/splay-tree.ts#L1">src/data-structures/binary-tree/splay-tree.ts:1</a></li></ul></aside>
24
24
  <section class="tsd-panel-group tsd-index-group">
25
25
  <section class="tsd-panel tsd-index-panel">
26
26
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -31,7 +31,7 @@
31
31
  <ul class="tsd-hierarchy">
32
32
  <li><span class="target">Stack</span></li></ul></section><aside class="tsd-sources">
33
33
  <ul>
34
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L6">src/data-structures/stack/stack.ts:6</a></li></ul></aside>
34
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L6">src/data-structures/stack/stack.ts:6</a></li></ul></aside>
35
35
  <section class="tsd-panel-group tsd-index-group">
36
36
  <section class="tsd-panel tsd-index-panel">
37
37
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -84,14 +84,14 @@ is provided and is an array, it is assigned to the `_elements</p>
84
84
  <h4 class="tsd-returns-title">Returns <a href="Stack.html" class="tsd-signature-type tsd-kind-class">Stack</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">&gt;</span></h4>
85
85
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
86
86
  <ul>
87
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L15">src/data-structures/stack/stack.ts:15</a></li></ul></aside></li></ul></section></section>
87
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L15">src/data-structures/stack/stack.ts:15</a></li></ul></aside></li></ul></section></section>
88
88
  <section class="tsd-panel-group tsd-member-group">
89
89
  <h2>Properties</h2>
90
90
  <section class="tsd-panel tsd-member tsd-is-protected"><a id="_elements" class="tsd-anchor"></a>
91
91
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagProtected">Protected</code> <span>_elements</span><a href="#_elements" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
92
92
  <div class="tsd-signature"><span class="tsd-kind-property">_elements</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">T</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources">
93
93
  <ul>
94
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L7">src/data-structures/stack/stack.ts:7</a></li></ul></aside></section></section>
94
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L7">src/data-structures/stack/stack.ts:7</a></li></ul></aside></section></section>
95
95
  <section class="tsd-panel-group tsd-member-group">
96
96
  <h2>Methods</h2>
97
97
  <section class="tsd-panel tsd-member"><a id="clear" class="tsd-anchor"></a>
@@ -104,7 +104,7 @@ is provided and is an array, it is assigned to the `_elements</p>
104
104
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
105
105
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
106
106
  <ul>
107
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L87">src/data-structures/stack/stack.ts:87</a></li></ul></aside></li></ul></section>
107
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L87">src/data-structures/stack/stack.ts:87</a></li></ul></aside></li></ul></section>
108
108
  <section class="tsd-panel tsd-member"><a id="clone" class="tsd-anchor"></a>
109
109
  <h3 class="tsd-anchor-link"><span>clone</span><a href="#clone" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
110
110
  <ul class="tsd-signatures">
@@ -116,7 +116,7 @@ is provided and is an array, it is assigned to the `_elements</p>
116
116
 
117
117
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
118
118
  <ul>
119
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L95">src/data-structures/stack/stack.ts:95</a></li></ul></aside></li></ul></section>
119
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L95">src/data-structures/stack/stack.ts:95</a></li></ul></aside></li></ul></section>
120
120
  <section class="tsd-panel tsd-member"><a id="isEmpty" class="tsd-anchor"></a>
121
121
  <h3 class="tsd-anchor-link"><span>is<wbr/>Empty</span><a href="#isEmpty" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
122
122
  <ul class="tsd-signatures">
@@ -128,7 +128,7 @@ is provided and is an array, it is assigned to the `_elements</p>
128
128
 
129
129
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
130
130
  <ul>
131
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L33">src/data-structures/stack/stack.ts:33</a></li></ul></aside></li></ul></section>
131
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L33">src/data-structures/stack/stack.ts:33</a></li></ul></aside></li></ul></section>
132
132
  <section class="tsd-panel tsd-member"><a id="peek" class="tsd-anchor"></a>
133
133
  <h3 class="tsd-anchor-link"><span>peek</span><a href="#peek" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
134
134
  <ul class="tsd-signatures">
@@ -140,7 +140,7 @@ is provided and is an array, it is assigned to the `_elements</p>
140
140
 
141
141
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
142
142
  <ul>
143
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L49">src/data-structures/stack/stack.ts:49</a></li></ul></aside></li></ul></section>
143
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L49">src/data-structures/stack/stack.ts:49</a></li></ul></aside></li></ul></section>
144
144
  <section class="tsd-panel tsd-member"><a id="pop" class="tsd-anchor"></a>
145
145
  <h3 class="tsd-anchor-link"><span>pop</span><a href="#pop" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
146
146
  <ul class="tsd-signatures">
@@ -153,7 +153,7 @@ array is empty, it returns <code>null</code>.</p>
153
153
 
154
154
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
155
155
  <ul>
156
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L70">src/data-structures/stack/stack.ts:70</a></li></ul></aside></li></ul></section>
156
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L70">src/data-structures/stack/stack.ts:70</a></li></ul></aside></li></ul></section>
157
157
  <section class="tsd-panel tsd-member"><a id="push" class="tsd-anchor"></a>
158
158
  <h3 class="tsd-anchor-link"><span>push</span><a href="#push" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
159
159
  <ul class="tsd-signatures">
@@ -173,7 +173,7 @@ array is empty, it returns <code>null</code>.</p>
173
173
 
174
174
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
175
175
  <ul>
176
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L60">src/data-structures/stack/stack.ts:60</a></li></ul></aside></li></ul></section>
176
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L60">src/data-structures/stack/stack.ts:60</a></li></ul></aside></li></ul></section>
177
177
  <section class="tsd-panel tsd-member"><a id="size" class="tsd-anchor"></a>
178
178
  <h3 class="tsd-anchor-link"><span>size</span><a href="#size" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
179
179
  <ul class="tsd-signatures">
@@ -185,7 +185,7 @@ array is empty, it returns <code>null</code>.</p>
185
185
 
186
186
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
187
187
  <ul>
188
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L41">src/data-structures/stack/stack.ts:41</a></li></ul></aside></li></ul></section>
188
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L41">src/data-structures/stack/stack.ts:41</a></li></ul></aside></li></ul></section>
189
189
  <section class="tsd-panel tsd-member"><a id="toArray" class="tsd-anchor"></a>
190
190
  <h3 class="tsd-anchor-link"><span>to<wbr/>Array</span><a href="#toArray" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
191
191
  <ul class="tsd-signatures">
@@ -197,7 +197,7 @@ array is empty, it returns <code>null</code>.</p>
197
197
 
198
198
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
199
199
  <ul>
200
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L80">src/data-structures/stack/stack.ts:80</a></li></ul></aside></li></ul></section>
200
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L80">src/data-structures/stack/stack.ts:80</a></li></ul></aside></li></ul></section>
201
201
  <section class="tsd-panel tsd-member"><a id="fromArray" class="tsd-anchor"></a>
202
202
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>from<wbr/>Array</span><a href="#fromArray" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
203
203
  <ul class="tsd-signatures">
@@ -223,7 +223,7 @@ array.</p>
223
223
 
224
224
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
225
225
  <ul>
226
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/83d3f8d/src/data-structures/stack/stack.ts#L25">src/data-structures/stack/stack.ts:25</a></li></ul></aside></li></ul></section></section></div>
226
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/stack/stack.ts#L25">src/data-structures/stack/stack.ts:25</a></li></ul></aside></li></ul></section></section></div>
227
227
  <div class="col-sidebar">
228
228
  <div class="page-menu">
229
229
  <div class="tsd-navigation settings">