data-structure-typed 1.32.0 → 1.32.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.
Files changed (258) hide show
  1. package/.github/workflows/ci.yml +12 -1
  2. package/.prettierrc.js +1 -1
  3. package/CHANGELOG.md +1 -1
  4. package/README.md +63 -176
  5. package/coverage/clover.xml +717 -717
  6. package/coverage/coverage-final.json +21 -21
  7. package/coverage/coverage-summary.json +68 -0
  8. package/coverage/lcov-report/index.html +1 -1
  9. package/coverage/lcov-report/src/data-structures/binary-tree/aa-tree.ts.html +1 -1
  10. package/coverage/lcov-report/src/data-structures/binary-tree/abstract-binary-tree.ts.html +19 -7
  11. package/coverage/lcov-report/src/data-structures/binary-tree/avl-tree.ts.html +5 -5
  12. package/coverage/lcov-report/src/data-structures/binary-tree/b-tree.ts.html +1 -1
  13. package/coverage/lcov-report/src/data-structures/binary-tree/binary-indexed-tree.ts.html +1 -1
  14. package/coverage/lcov-report/src/data-structures/binary-tree/binary-tree.ts.html +4 -4
  15. package/coverage/lcov-report/src/data-structures/binary-tree/bst.ts.html +7 -25
  16. package/coverage/lcov-report/src/data-structures/binary-tree/index.html +1 -1
  17. package/coverage/lcov-report/src/data-structures/binary-tree/index.ts.html +1 -1
  18. package/coverage/lcov-report/src/data-structures/binary-tree/rb-tree.ts.html +4 -4
  19. package/coverage/lcov-report/src/data-structures/binary-tree/segment-tree.ts.html +2 -2
  20. package/coverage/lcov-report/src/data-structures/binary-tree/splay-tree.ts.html +1 -1
  21. package/coverage/lcov-report/src/data-structures/binary-tree/tree-multiset.ts.html +9 -9
  22. package/coverage/lcov-report/src/data-structures/binary-tree/two-three-tree.ts.html +1 -1
  23. package/coverage/lcov-report/src/data-structures/graph/abstract-graph.ts.html +17 -17
  24. package/coverage/lcov-report/src/data-structures/graph/directed-graph.ts.html +5 -5
  25. package/coverage/lcov-report/src/data-structures/graph/index.html +1 -1
  26. package/coverage/lcov-report/src/data-structures/graph/index.ts.html +1 -1
  27. package/coverage/lcov-report/src/data-structures/graph/map-graph.ts.html +3 -3
  28. package/coverage/lcov-report/src/data-structures/graph/undirected-graph.ts.html +5 -5
  29. package/coverage/lcov-report/src/data-structures/hash/coordinate-map.ts.html +1 -1
  30. package/coverage/lcov-report/src/data-structures/hash/coordinate-set.ts.html +1 -1
  31. package/coverage/lcov-report/src/data-structures/hash/hash-table.ts.html +1 -1
  32. package/coverage/lcov-report/src/data-structures/hash/index.html +1 -1
  33. package/coverage/lcov-report/src/data-structures/hash/index.ts.html +1 -1
  34. package/coverage/lcov-report/src/data-structures/hash/pair.ts.html +1 -1
  35. package/coverage/lcov-report/src/data-structures/hash/tree-map.ts.html +1 -1
  36. package/coverage/lcov-report/src/data-structures/hash/tree-set.ts.html +1 -1
  37. package/coverage/lcov-report/src/data-structures/heap/heap.ts.html +4 -4
  38. package/coverage/lcov-report/src/data-structures/heap/index.html +1 -1
  39. package/coverage/lcov-report/src/data-structures/heap/index.ts.html +1 -1
  40. package/coverage/lcov-report/src/data-structures/heap/max-heap.ts.html +4 -4
  41. package/coverage/lcov-report/src/data-structures/heap/min-heap.ts.html +4 -4
  42. package/coverage/lcov-report/src/data-structures/index.html +1 -1
  43. package/coverage/lcov-report/src/data-structures/index.ts.html +1 -1
  44. package/coverage/lcov-report/src/data-structures/linked-list/doubly-linked-list.ts.html +1 -1
  45. package/coverage/lcov-report/src/data-structures/linked-list/index.html +1 -1
  46. package/coverage/lcov-report/src/data-structures/linked-list/index.ts.html +1 -1
  47. package/coverage/lcov-report/src/data-structures/linked-list/singly-linked-list.ts.html +1 -1
  48. package/coverage/lcov-report/src/data-structures/linked-list/skip-linked-list.ts.html +1 -1
  49. package/coverage/lcov-report/src/data-structures/matrix/index.html +1 -1
  50. package/coverage/lcov-report/src/data-structures/matrix/index.ts.html +1 -1
  51. package/coverage/lcov-report/src/data-structures/matrix/matrix.ts.html +3 -3
  52. package/coverage/lcov-report/src/data-structures/matrix/matrix2d.ts.html +1 -1
  53. package/coverage/lcov-report/src/data-structures/matrix/navigator.ts.html +4 -4
  54. package/coverage/lcov-report/src/data-structures/matrix/vector2d.ts.html +1 -1
  55. package/coverage/lcov-report/src/data-structures/priority-queue/index.html +1 -1
  56. package/coverage/lcov-report/src/data-structures/priority-queue/index.ts.html +1 -1
  57. package/coverage/lcov-report/src/data-structures/priority-queue/max-priority-queue.ts.html +6 -6
  58. package/coverage/lcov-report/src/data-structures/priority-queue/min-priority-queue.ts.html +3 -3
  59. package/coverage/lcov-report/src/data-structures/priority-queue/priority-queue.ts.html +32 -32
  60. package/coverage/lcov-report/src/data-structures/queue/deque.ts.html +5 -5
  61. package/coverage/lcov-report/src/data-structures/queue/index.html +1 -1
  62. package/coverage/lcov-report/src/data-structures/queue/index.ts.html +1 -1
  63. package/coverage/lcov-report/src/data-structures/queue/queue.ts.html +2 -2
  64. package/coverage/lcov-report/src/data-structures/stack/index.html +1 -1
  65. package/coverage/lcov-report/src/data-structures/stack/index.ts.html +1 -1
  66. package/coverage/lcov-report/src/data-structures/stack/stack.ts.html +1 -1
  67. package/coverage/lcov-report/src/data-structures/tree/index.html +1 -1
  68. package/coverage/lcov-report/src/data-structures/tree/index.ts.html +1 -1
  69. package/coverage/lcov-report/src/data-structures/tree/tree.ts.html +2 -2
  70. package/coverage/lcov-report/src/data-structures/trie/index.html +1 -1
  71. package/coverage/lcov-report/src/data-structures/trie/index.ts.html +1 -1
  72. package/coverage/lcov-report/src/data-structures/trie/trie.ts.html +1 -1
  73. package/coverage/lcov-report/src/index.html +1 -1
  74. package/coverage/lcov-report/src/index.ts.html +1 -1
  75. package/coverage/lcov-report/src/interfaces/index.html +1 -1
  76. package/coverage/lcov-report/src/interfaces/index.ts.html +1 -1
  77. package/coverage/lcov-report/src/types/data-structures/abstract-binary-tree.ts.html +1 -1
  78. package/coverage/lcov-report/src/types/data-structures/bst.ts.html +1 -1
  79. package/coverage/lcov-report/src/types/data-structures/directed-graph.ts.html +1 -1
  80. package/coverage/lcov-report/src/types/data-structures/index.html +1 -1
  81. package/coverage/lcov-report/src/types/data-structures/index.ts.html +1 -1
  82. package/coverage/lcov-report/src/types/data-structures/rb-tree.ts.html +1 -1
  83. package/coverage/lcov-report/src/types/index.html +1 -1
  84. package/coverage/lcov-report/src/types/index.ts.html +1 -1
  85. package/coverage/lcov-report/src/types/utils/index.html +1 -1
  86. package/coverage/lcov-report/src/types/utils/index.ts.html +1 -1
  87. package/coverage/lcov-report/src/utils/index.html +1 -1
  88. package/coverage/lcov-report/src/utils/index.ts.html +1 -1
  89. package/coverage/lcov-report/src/utils/utils.ts.html +4 -4
  90. package/coverage/lcov-report/test/utils/index.html +1 -1
  91. package/coverage/lcov-report/test/utils/index.ts.html +1 -1
  92. package/coverage/lcov-report/test/utils/magnitude.ts.html +1 -1
  93. package/coverage/lcov-report/test/utils/number.ts.html +1 -1
  94. package/coverage/lcov.info +1329 -1329
  95. package/dist/data-structures/binary-tree/abstract-binary-tree.js.map +1 -1
  96. package/dist/data-structures/binary-tree/avl-tree.js.map +1 -1
  97. package/dist/data-structures/binary-tree/binary-tree.js.map +1 -1
  98. package/dist/data-structures/binary-tree/bst.js.map +1 -1
  99. package/dist/data-structures/binary-tree/rb-tree.js.map +1 -1
  100. package/dist/data-structures/binary-tree/tree-multiset.js.map +1 -1
  101. package/dist/data-structures/graph/abstract-graph.js.map +1 -1
  102. package/dist/data-structures/graph/directed-graph.js.map +1 -1
  103. package/dist/data-structures/graph/map-graph.js.map +1 -1
  104. package/dist/data-structures/graph/undirected-graph.js.map +1 -1
  105. package/dist/data-structures/heap/heap.js.map +1 -1
  106. package/dist/data-structures/heap/max-heap.js.map +1 -1
  107. package/dist/data-structures/heap/min-heap.js.map +1 -1
  108. package/dist/data-structures/matrix/matrix.js.map +1 -1
  109. package/dist/data-structures/matrix/navigator.js.map +1 -1
  110. package/dist/data-structures/priority-queue/max-priority-queue.js.map +1 -1
  111. package/dist/data-structures/priority-queue/min-priority-queue.js.map +1 -1
  112. package/dist/data-structures/priority-queue/priority-queue.js.map +1 -1
  113. package/dist/data-structures/queue/deque.js.map +1 -1
  114. package/dist/data-structures/queue/queue.js.map +1 -1
  115. package/dist/data-structures/tree/tree.js.map +1 -1
  116. package/dist/utils/utils.js.map +1 -1
  117. package/docs/classes/AVLTree.html +85 -85
  118. package/docs/classes/AVLTreeNode.html +15 -15
  119. package/docs/classes/AaTree.html +1 -1
  120. package/docs/classes/AbstractBinaryTree.html +78 -78
  121. package/docs/classes/AbstractBinaryTreeNode.html +21 -21
  122. package/docs/classes/AbstractEdge.html +11 -11
  123. package/docs/classes/AbstractGraph.html +36 -36
  124. package/docs/classes/AbstractVertex.html +8 -8
  125. package/docs/classes/ArrayDeque.html +14 -14
  126. package/docs/classes/BST.html +78 -78
  127. package/docs/classes/BSTNode.html +15 -15
  128. package/docs/classes/BTree.html +1 -1
  129. package/docs/classes/BinaryIndexedTree.html +9 -9
  130. package/docs/classes/BinaryTree.html +71 -71
  131. package/docs/classes/BinaryTreeNode.html +15 -15
  132. package/docs/classes/Character.html +4 -4
  133. package/docs/classes/CoordinateMap.html +9 -9
  134. package/docs/classes/CoordinateSet.html +8 -8
  135. package/docs/classes/Deque.html +34 -34
  136. package/docs/classes/DirectedEdge.html +15 -15
  137. package/docs/classes/DirectedGraph.html +52 -52
  138. package/docs/classes/DirectedVertex.html +6 -6
  139. package/docs/classes/DoublyLinkedList.html +37 -37
  140. package/docs/classes/DoublyLinkedListNode.html +11 -11
  141. package/docs/classes/HashTable.html +1 -1
  142. package/docs/classes/Heap.html +26 -26
  143. package/docs/classes/HeapItem.html +8 -8
  144. package/docs/classes/LinkedListQueue.html +35 -35
  145. package/docs/classes/MapEdge.html +13 -13
  146. package/docs/classes/MapGraph.html +56 -56
  147. package/docs/classes/MapVertex.html +12 -12
  148. package/docs/classes/Matrix2D.html +16 -16
  149. package/docs/classes/MatrixNTI2D.html +4 -4
  150. package/docs/classes/MaxHeap.html +26 -26
  151. package/docs/classes/MaxPriorityQueue.html +34 -34
  152. package/docs/classes/MinHeap.html +26 -26
  153. package/docs/classes/MinPriorityQueue.html +34 -34
  154. package/docs/classes/Navigator.html +10 -10
  155. package/docs/classes/ObjectDeque.html +25 -25
  156. package/docs/classes/Pair.html +1 -1
  157. package/docs/classes/PriorityQueue.html +32 -32
  158. package/docs/classes/Queue.html +22 -22
  159. package/docs/classes/RBTree.html +78 -78
  160. package/docs/classes/RBTreeNode.html +18 -18
  161. package/docs/classes/SegmentTree.html +17 -17
  162. package/docs/classes/SegmentTreeNode.html +20 -20
  163. package/docs/classes/SinglyLinkedList.html +35 -35
  164. package/docs/classes/SinglyLinkedListNode.html +8 -8
  165. package/docs/classes/SkipLinkedList.html +1 -1
  166. package/docs/classes/SplayTree.html +1 -1
  167. package/docs/classes/Stack.html +12 -12
  168. package/docs/classes/TreeMap.html +1 -1
  169. package/docs/classes/TreeMultiset.html +99 -99
  170. package/docs/classes/TreeMultisetNode.html +18 -18
  171. package/docs/classes/TreeNode.html +13 -13
  172. package/docs/classes/TreeSet.html +1 -1
  173. package/docs/classes/Trie.html +13 -13
  174. package/docs/classes/TrieNode.html +11 -11
  175. package/docs/classes/TwoThreeTree.html +1 -1
  176. package/docs/classes/UndirectedEdge.html +12 -12
  177. package/docs/classes/UndirectedGraph.html +40 -40
  178. package/docs/classes/UndirectedVertex.html +6 -6
  179. package/docs/classes/Vector2D.html +28 -28
  180. package/docs/enums/CP.html +4 -4
  181. package/docs/enums/FamilyPosition.html +8 -8
  182. package/docs/enums/LoopType.html +3 -3
  183. package/docs/enums/RBColor.html +3 -3
  184. package/docs/enums/TopologicalProperty.html +4 -4
  185. package/docs/functions/arrayRemove.html +1 -1
  186. package/docs/functions/isThunk.html +1 -1
  187. package/docs/functions/toThunk.html +1 -1
  188. package/docs/functions/trampoline.html +1 -1
  189. package/docs/functions/trampolineAsync.html +1 -1
  190. package/docs/functions/uuidV4.html +1 -1
  191. package/docs/index.html +21 -26
  192. package/docs/interfaces/IAVLTree.html +77 -77
  193. package/docs/interfaces/IAbstractBinaryTree.html +72 -72
  194. package/docs/interfaces/IAbstractBinaryTreeNode.html +14 -14
  195. package/docs/interfaces/IAbstractGraph.html +15 -15
  196. package/docs/interfaces/IBST.html +77 -77
  197. package/docs/interfaces/IDirectedGraph.html +23 -23
  198. package/docs/interfaces/IRBTree.html +77 -77
  199. package/docs/interfaces/IUNDirectedGraph.html +16 -16
  200. package/docs/types/AVLTreeNodeNested.html +1 -1
  201. package/docs/types/AVLTreeOptions.html +1 -1
  202. package/docs/types/AbstractBinaryTreeNodeNested.html +1 -1
  203. package/docs/types/AbstractBinaryTreeNodeProperties.html +1 -1
  204. package/docs/types/AbstractBinaryTreeNodeProperty.html +1 -1
  205. package/docs/types/AbstractBinaryTreeOptions.html +1 -1
  206. package/docs/types/BSTComparator.html +1 -1
  207. package/docs/types/BSTNodeNested.html +1 -1
  208. package/docs/types/BSTOptions.html +1 -1
  209. package/docs/types/BinaryTreeDeletedResult.html +1 -1
  210. package/docs/types/BinaryTreeNodeId.html +1 -1
  211. package/docs/types/BinaryTreeNodeNested.html +1 -1
  212. package/docs/types/BinaryTreeNodePropertyName.html +1 -1
  213. package/docs/types/BinaryTreeOptions.html +1 -1
  214. package/docs/types/DFSOrderPattern.html +1 -1
  215. package/docs/types/DijkstraResult.html +1 -1
  216. package/docs/types/Direction.html +1 -1
  217. package/docs/types/DummyAny.html +1 -1
  218. package/docs/types/EdgeId.html +1 -1
  219. package/docs/types/HeapOptions.html +1 -1
  220. package/docs/types/IAVLTreeNode.html +1 -1
  221. package/docs/types/IBSTNode.html +1 -1
  222. package/docs/types/IBinaryTree.html +1 -1
  223. package/docs/types/IBinaryTreeNode.html +1 -1
  224. package/docs/types/IRBTreeNode.html +1 -1
  225. package/docs/types/ITreeMultiset.html +1 -1
  226. package/docs/types/ITreeMultisetNode.html +1 -1
  227. package/docs/types/KeyValueObject.html +1 -1
  228. package/docs/types/KeyValueObjectWithId.html +1 -1
  229. package/docs/types/MapGraphCoordinate.html +1 -1
  230. package/docs/types/NavigatorParams.html +1 -1
  231. package/docs/types/NodeOrPropertyName.html +1 -1
  232. package/docs/types/NonNumberNonObjectButDefined.html +1 -1
  233. package/docs/types/ObjectWithNonNumberId.html +1 -1
  234. package/docs/types/ObjectWithNumberId.html +1 -1
  235. package/docs/types/ObjectWithoutId.html +1 -1
  236. package/docs/types/PriorityQueueComparator.html +1 -1
  237. package/docs/types/PriorityQueueDFSOrderPattern.html +1 -1
  238. package/docs/types/PriorityQueueOptions.html +1 -1
  239. package/docs/types/RBTreeNodeNested.html +1 -1
  240. package/docs/types/RBTreeOptions.html +1 -1
  241. package/docs/types/RestrictValById.html +1 -1
  242. package/docs/types/SegmentTreeNodeVal.html +1 -1
  243. package/docs/types/SpecifyOptional.html +1 -1
  244. package/docs/types/Thunk.html +1 -1
  245. package/docs/types/ToThunkFn.html +1 -1
  246. package/docs/types/TopologicalStatus.html +1 -1
  247. package/docs/types/TreeMultisetNodeNested.html +1 -1
  248. package/docs/types/TreeMultisetOptions.html +1 -1
  249. package/docs/types/TrlAsyncFn.html +1 -1
  250. package/docs/types/TrlFn.html +1 -1
  251. package/docs/types/Turning.html +1 -1
  252. package/docs/types/VertexId.html +1 -1
  253. package/docs/variables/THUNK_SYMBOL.html +1 -1
  254. package/jest.config.js +1 -0
  255. package/package.json +18 -6
  256. package/.auto-changelog-template.hbs +0 -36
  257. package/rename_clear_files.sh +0 -29
  258. package/tsconfig.build.json +0 -33
@@ -27,7 +27,7 @@
27
27
  <ul class="tsd-hierarchy">
28
28
  <li><span class="target">LinkedListQueue</span></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/6996813/src/data-structures/queue/queue.ts#L8">src/data-structures/queue/queue.ts:8</a></li></ul></aside>
30
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/queue/queue.ts#L8">src/data-structures/queue/queue.ts:8</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">
@@ -89,7 +89,7 @@
89
89
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
90
90
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#constructor">constructor</a></p>
91
91
  <ul>
92
- <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>
92
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
93
93
  <section class="tsd-panel-group tsd-member-group">
94
94
  <h2>Accessors</h2>
95
95
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="head" class="tsd-anchor"></a>
@@ -100,7 +100,7 @@
100
100
  <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">
101
101
  <p>Inherited from SinglyLinkedList.head</p>
102
102
  <ul>
103
- <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>
103
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
104
104
  <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>
105
105
  <li class="tsd-description">
106
106
  <div class="tsd-parameters">
@@ -111,7 +111,7 @@
111
111
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
112
112
  <p>Inherited from SinglyLinkedList.head</p>
113
113
  <ul>
114
- <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>
114
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
115
115
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="length" class="tsd-anchor"></a>
116
116
  <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>
117
117
  <ul class="tsd-signatures tsd-is-inherited">
@@ -120,7 +120,7 @@
120
120
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
121
121
  <p>Inherited from SinglyLinkedList.length</p>
122
122
  <ul>
123
- <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>
123
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
124
124
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="tail" class="tsd-anchor"></a>
125
125
  <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>
126
126
  <ul class="tsd-signatures tsd-is-inherited">
@@ -129,7 +129,7 @@
129
129
  <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">
130
130
  <p>Inherited from SinglyLinkedList.tail</p>
131
131
  <ul>
132
- <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>
132
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
133
133
  <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>
134
134
  <li class="tsd-description">
135
135
  <div class="tsd-parameters">
@@ -140,7 +140,7 @@
140
140
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
141
141
  <p>Inherited from SinglyLinkedList.tail</p>
142
142
  <ul>
143
- <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>
143
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
144
144
  <section class="tsd-panel-group tsd-member-group">
145
145
  <h2>Methods</h2>
146
146
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="_iterator_" class="tsd-anchor"></a>
@@ -151,7 +151,7 @@
151
151
  <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">
152
152
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#_iterator_">[iterator]</a></p>
153
153
  <ul>
154
- <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>
154
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
155
155
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="clear" class="tsd-anchor"></a>
156
156
  <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>
157
157
  <ul class="tsd-signatures tsd-is-inherited">
@@ -163,7 +163,7 @@
163
163
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
164
164
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#clear">clear</a></p>
165
165
  <ul>
166
- <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>
166
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
167
167
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="countOccurrences" class="tsd-anchor"></a>
168
168
  <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>
169
169
  <ul class="tsd-signatures tsd-is-inherited">
@@ -184,7 +184,7 @@
184
184
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
185
185
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#countOccurrences">countOccurrences</a></p>
186
186
  <ul>
187
- <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>
187
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
188
188
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="delete" class="tsd-anchor"></a>
189
189
  <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>
190
190
  <ul class="tsd-signatures tsd-is-inherited">
@@ -207,7 +207,7 @@ successfully deleted from the linked list, and <code>false</code> if the value o
207
207
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
208
208
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#delete">delete</a></p>
209
209
  <ul>
210
- <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>
210
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
211
211
  <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>
212
212
  <li class="tsd-description">
213
213
  <div class="tsd-comment tsd-typography"><p>The delete function removes a node with a specific value from a singly linked list.</p>
@@ -227,7 +227,7 @@ successfully deleted from the linked list, and <code>false</code> if the value o
227
227
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
228
228
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#delete">delete</a></p>
229
229
  <ul>
230
- <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>
230
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
231
231
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="deleteAt" class="tsd-anchor"></a>
232
232
  <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>
233
233
  <ul class="tsd-signatures tsd-is-inherited">
@@ -250,7 +250,7 @@ bounds.</p>
250
250
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
251
251
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#deleteAt">deleteAt</a></p>
252
252
  <ul>
253
- <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>
253
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
254
254
  <section class="tsd-panel tsd-member"><a id="dequeue" class="tsd-anchor"></a>
255
255
  <h3 class="tsd-anchor-link"><span>dequeue</span><a href="#dequeue" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
256
256
  <ul class="tsd-signatures">
@@ -262,7 +262,7 @@ bounds.</p>
262
262
 
263
263
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
264
264
  <ul>
265
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/queue/queue.ts#L21">src/data-structures/queue/queue.ts:21</a></li></ul></aside></li></ul></section>
265
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/queue/queue.ts#L21">src/data-structures/queue/queue.ts:21</a></li></ul></aside></li></ul></section>
266
266
  <section class="tsd-panel tsd-member"><a id="enqueue" class="tsd-anchor"></a>
267
267
  <h3 class="tsd-anchor-link"><span>enqueue</span><a href="#enqueue" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
268
268
  <ul class="tsd-signatures">
@@ -281,7 +281,7 @@ bounds.</p>
281
281
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
282
282
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
283
283
  <ul>
284
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/queue/queue.ts#L13">src/data-structures/queue/queue.ts:13</a></li></ul></aside></li></ul></section>
284
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/queue/queue.ts#L13">src/data-structures/queue/queue.ts:13</a></li></ul></aside></li></ul></section>
285
285
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="find" class="tsd-anchor"></a>
286
286
  <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>
287
287
  <ul class="tsd-signatures tsd-is-inherited">
@@ -315,7 +315,7 @@ the callback function. If no element satisfies the condition, it returns <code>n
315
315
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
316
316
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#find">find</a></p>
317
317
  <ul>
318
- <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>
318
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
319
319
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="findNode" class="tsd-anchor"></a>
320
320
  <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>
321
321
  <ul class="tsd-signatures tsd-is-inherited">
@@ -338,7 +338,7 @@ the specified value is found, the function returns <code>null</code>.</p>
338
338
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
339
339
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#findNode">findNode</a></p>
340
340
  <ul>
341
- <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>
341
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
342
342
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="getAt" class="tsd-anchor"></a>
343
343
  <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>
344
344
  <ul class="tsd-signatures tsd-is-inherited">
@@ -361,7 +361,7 @@ retrieve from the list.</p>
361
361
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
362
362
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#getAt">getAt</a></p>
363
363
  <ul>
364
- <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>
364
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
365
365
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="getLength" class="tsd-anchor"></a>
366
366
  <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>
367
367
  <ul class="tsd-signatures tsd-is-inherited">
@@ -370,7 +370,7 @@ retrieve from the list.</p>
370
370
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
371
371
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#getLength">getLength</a></p>
372
372
  <ul>
373
- <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>
373
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
374
374
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="getNodeAt" class="tsd-anchor"></a>
375
375
  <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>
376
376
  <ul class="tsd-signatures tsd-is-inherited">
@@ -393,7 +393,7 @@ specified index exists, or <code>null</code> if the index is out of bounds.</p>
393
393
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
394
394
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#getNodeAt">getNodeAt</a></p>
395
395
  <ul>
396
- <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>
396
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
397
397
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="indexOf" class="tsd-anchor"></a>
398
398
  <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>
399
399
  <ul class="tsd-signatures tsd-is-inherited">
@@ -415,7 +415,7 @@ value is not found, it returns -1.</p>
415
415
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
416
416
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#indexOf">indexOf</a></p>
417
417
  <ul>
418
- <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>
418
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
419
419
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="insertAfter" class="tsd-anchor"></a>
420
420
  <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>
421
421
  <ul class="tsd-signatures tsd-is-inherited">
@@ -443,7 +443,7 @@ existing value or node, and false if the existing value or node was not found in
443
443
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
444
444
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#insertAfter">insertAfter</a></p>
445
445
  <ul>
446
- <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>
446
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
447
447
  <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>
448
448
  <li class="tsd-description">
449
449
  <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>
@@ -468,7 +468,7 @@ existing value or node, and false if the existing value or node was not found in
468
468
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
469
469
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#insertAfter">insertAfter</a></p>
470
470
  <ul>
471
- <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>
471
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
472
472
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="insertAt" class="tsd-anchor"></a>
473
473
  <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>
474
474
  <ul class="tsd-signatures tsd-is-inherited">
@@ -497,7 +497,7 @@ if the index is out of bounds.</p>
497
497
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
498
498
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#insertAt">insertAt</a></p>
499
499
  <ul>
500
- <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>
500
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
501
501
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="insertBefore" class="tsd-anchor"></a>
502
502
  <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>
503
503
  <ul class="tsd-signatures tsd-is-inherited">
@@ -521,7 +521,7 @@ inserted before the existing value, and <code>false</code> otherwise.</p>
521
521
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
522
522
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#insertBefore">insertBefore</a></p>
523
523
  <ul>
524
- <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>
524
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
525
525
  <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>
526
526
  <li class="tsd-description">
527
527
  <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>
@@ -542,7 +542,7 @@ inserted before the existing value, and <code>false</code> otherwise.</p>
542
542
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
543
543
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#insertBefore">insertBefore</a></p>
544
544
  <ul>
545
- <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>
545
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
546
546
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="isEmpty" class="tsd-anchor"></a>
547
547
  <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>
548
548
  <ul class="tsd-signatures tsd-is-inherited">
@@ -556,7 +556,7 @@ whether it is empty or not.</p>
556
556
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
557
557
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#isEmpty">isEmpty</a></p>
558
558
  <ul>
559
- <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>
559
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
560
560
  <section class="tsd-panel tsd-member"><a id="peek" class="tsd-anchor"></a>
561
561
  <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>
562
562
  <ul class="tsd-signatures">
@@ -568,7 +568,7 @@ whether it is empty or not.</p>
568
568
 
569
569
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
570
570
  <ul>
571
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/queue/queue.ts#L29">src/data-structures/queue/queue.ts:29</a></li></ul></aside></li></ul></section>
571
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/queue/queue.ts#L29">src/data-structures/queue/queue.ts:29</a></li></ul></aside></li></ul></section>
572
572
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="pop" class="tsd-anchor"></a>
573
573
  <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>
574
574
  <ul class="tsd-signatures tsd-is-inherited">
@@ -583,7 +583,7 @@ the linked list is empty, it returns <code>null</code>.</p>
583
583
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
584
584
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#pop">pop</a></p>
585
585
  <ul>
586
- <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>
586
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
587
587
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="push" class="tsd-anchor"></a>
588
588
  <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>
589
589
  <ul class="tsd-signatures tsd-is-inherited">
@@ -604,7 +604,7 @@ any type (T) as specified in the generic type declaration of the class or functi
604
604
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
605
605
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#push">push</a></p>
606
606
  <ul>
607
- <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>
607
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
608
608
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="reverse" class="tsd-anchor"></a>
609
609
  <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>
610
610
  <ul class="tsd-signatures tsd-is-inherited">
@@ -617,7 +617,7 @@ any type (T) as specified in the generic type declaration of the class or functi
617
617
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
618
618
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#reverse">reverse</a></p>
619
619
  <ul>
620
- <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>
620
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
621
621
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="shift" class="tsd-anchor"></a>
622
622
  <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>
623
623
  <ul class="tsd-signatures tsd-is-inherited">
@@ -630,7 +630,7 @@ any type (T) as specified in the generic type declaration of the class or functi
630
630
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
631
631
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#shift">shift</a></p>
632
632
  <ul>
633
- <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>
633
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
634
634
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="toArray" class="tsd-anchor"></a>
635
635
  <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>
636
636
  <ul class="tsd-signatures tsd-is-inherited">
@@ -643,7 +643,7 @@ any type (T) as specified in the generic type declaration of the class or functi
643
643
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
644
644
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#toArray">toArray</a></p>
645
645
  <ul>
646
- <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>
646
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
647
647
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="unshift" class="tsd-anchor"></a>
648
648
  <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>
649
649
  <ul class="tsd-signatures tsd-is-inherited">
@@ -664,7 +664,7 @@ linked list.</p>
664
664
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
665
665
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#unshift">unshift</a></p>
666
666
  <ul>
667
- <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>
667
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
668
668
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="fromArray" class="tsd-anchor"></a>
669
669
  <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>
670
670
  <ul class="tsd-signatures tsd-is-inherited">
@@ -691,7 +691,7 @@ array.</p>
691
691
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
692
692
  <p>Inherited from <a href="SinglyLinkedList.html">SinglyLinkedList</a>.<a href="SinglyLinkedList.html#fromArray">fromArray</a></p>
693
693
  <ul>
694
- <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>
694
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/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>
695
695
  <div class="col-sidebar">
696
696
  <div class="page-menu">
697
697
  <div class="tsd-navigation settings">
@@ -27,7 +27,7 @@
27
27
  <ul class="tsd-hierarchy">
28
28
  <li><span class="target">MapEdge</span></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/6996813/src/data-structures/graph/map-graph.ts#L44">src/data-structures/graph/map-graph.ts:44</a></li></ul></aside>
30
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/map-graph.ts#L44">src/data-structures/graph/map-graph.ts:44</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">
@@ -97,7 +97,7 @@ information or data associated with the edge.</p>
97
97
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
98
98
  <p>Overrides <a href="DirectedEdge.html">DirectedEdge</a>.<a href="DirectedEdge.html#constructor">constructor</a></p>
99
99
  <ul>
100
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/map-graph.ts#L55">src/data-structures/graph/map-graph.ts:55</a></li></ul></aside></li></ul></section></section>
100
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/map-graph.ts#L55">src/data-structures/graph/map-graph.ts:55</a></li></ul></aside></li></ul></section></section>
101
101
  <section class="tsd-panel-group tsd-member-group">
102
102
  <h2>Properties</h2>
103
103
  <section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><a id="_hashCode" class="tsd-anchor"></a>
@@ -105,7 +105,7 @@ information or data associated with the edge.</p>
105
105
  <div class="tsd-signature"><span class="tsd-kind-property">_hash<wbr/>Code</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
106
106
  <p>Inherited from <a href="DirectedEdge.html">DirectedEdge</a>.<a href="DirectedEdge.html#_hashCode">_hashCode</a></p>
107
107
  <ul>
108
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L83">src/data-structures/graph/abstract-graph.ts:83</a></li></ul></aside></section></section>
108
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L83">src/data-structures/graph/abstract-graph.ts:83</a></li></ul></aside></section></section>
109
109
  <section class="tsd-panel-group tsd-member-group">
110
110
  <h2>Accessors</h2>
111
111
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="dest" class="tsd-anchor"></a>
@@ -116,7 +116,7 @@ information or data associated with the edge.</p>
116
116
  <h4 class="tsd-returns-title">Returns <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a></h4><aside class="tsd-sources">
117
117
  <p>Inherited from DirectedEdge.dest</p>
118
118
  <ul>
119
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/directed-graph.ts#L56">src/data-structures/graph/directed-graph.ts:56</a></li></ul></aside></li>
119
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/directed-graph.ts#L56">src/data-structures/graph/directed-graph.ts:56</a></li></ul></aside></li>
120
120
  <li class="tsd-signature" id="dest.dest-2"><span class="tsd-signature-symbol">set</span> dest<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">v</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
121
121
  <li class="tsd-description">
122
122
  <div class="tsd-parameters">
@@ -127,7 +127,7 @@ information or data associated with the edge.</p>
127
127
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
128
128
  <p>Inherited from DirectedEdge.dest</p>
129
129
  <ul>
130
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/directed-graph.ts#L60">src/data-structures/graph/directed-graph.ts:60</a></li></ul></aside></li></ul></section>
130
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/directed-graph.ts#L60">src/data-structures/graph/directed-graph.ts:60</a></li></ul></aside></li></ul></section>
131
131
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="hashCode" class="tsd-anchor"></a>
132
132
  <h3 class="tsd-anchor-link"><span>hash<wbr/>Code</span><a href="#hashCode" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
133
133
  <ul class="tsd-signatures tsd-is-inherited">
@@ -136,7 +136,7 @@ information or data associated with the edge.</p>
136
136
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
137
137
  <p>Inherited from DirectedEdge.hashCode</p>
138
138
  <ul>
139
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L85">src/data-structures/graph/abstract-graph.ts:85</a></li></ul></aside></li></ul></section>
139
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L85">src/data-structures/graph/abstract-graph.ts:85</a></li></ul></aside></li></ul></section>
140
140
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="src" class="tsd-anchor"></a>
141
141
  <h3 class="tsd-anchor-link"><span>src</span><a href="#src" 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 tsd-is-inherited">
@@ -145,7 +145,7 @@ information or data associated with the edge.</p>
145
145
  <h4 class="tsd-returns-title">Returns <a href="../types/VertexId.html" class="tsd-signature-type tsd-kind-type-alias">VertexId</a></h4><aside class="tsd-sources">
146
146
  <p>Inherited from DirectedEdge.src</p>
147
147
  <ul>
148
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/directed-graph.ts#L46">src/data-structures/graph/directed-graph.ts:46</a></li></ul></aside></li>
148
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/directed-graph.ts#L46">src/data-structures/graph/directed-graph.ts:46</a></li></ul></aside></li>
149
149
  <li class="tsd-signature" id="src.src-2"><span class="tsd-signature-symbol">set</span> src<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">v</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
150
150
  <li class="tsd-description">
151
151
  <div class="tsd-parameters">
@@ -156,7 +156,7 @@ information or data associated with the edge.</p>
156
156
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
157
157
  <p>Inherited from DirectedEdge.src</p>
158
158
  <ul>
159
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/directed-graph.ts#L50">src/data-structures/graph/directed-graph.ts:50</a></li></ul></aside></li></ul></section>
159
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/directed-graph.ts#L50">src/data-structures/graph/directed-graph.ts:50</a></li></ul></aside></li></ul></section>
160
160
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="val" class="tsd-anchor"></a>
161
161
  <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>
162
162
  <ul class="tsd-signatures tsd-is-inherited">
@@ -165,7 +165,7 @@ information or data associated with the edge.</p>
165
165
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type tsd-kind-type-parameter">T</span></h4><aside class="tsd-sources">
166
166
  <p>Inherited from DirectedEdge.val</p>
167
167
  <ul>
168
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L65">src/data-structures/graph/abstract-graph.ts:65</a></li></ul></aside></li>
168
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L65">src/data-structures/graph/abstract-graph.ts:65</a></li></ul></aside></li>
169
169
  <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>
170
170
  <li class="tsd-description">
171
171
  <div class="tsd-parameters">
@@ -176,7 +176,7 @@ information or data associated with the edge.</p>
176
176
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
177
177
  <p>Inherited from DirectedEdge.val</p>
178
178
  <ul>
179
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L69">src/data-structures/graph/abstract-graph.ts:69</a></li></ul></aside></li></ul></section>
179
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L69">src/data-structures/graph/abstract-graph.ts:69</a></li></ul></aside></li></ul></section>
180
180
  <section class="tsd-panel tsd-member tsd-is-inherited"><a id="weight" class="tsd-anchor"></a>
181
181
  <h3 class="tsd-anchor-link"><span>weight</span><a href="#weight" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
182
182
  <ul class="tsd-signatures tsd-is-inherited">
@@ -185,7 +185,7 @@ information or data associated with the edge.</p>
185
185
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
186
186
  <p>Inherited from DirectedEdge.weight</p>
187
187
  <ul>
188
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L75">src/data-structures/graph/abstract-graph.ts:75</a></li></ul></aside></li>
188
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L75">src/data-structures/graph/abstract-graph.ts:75</a></li></ul></aside></li>
189
189
  <li class="tsd-signature" id="weight.weight-2"><span class="tsd-signature-symbol">set</span> weight<span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">v</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
190
190
  <li class="tsd-description">
191
191
  <div class="tsd-parameters">
@@ -196,7 +196,7 @@ information or data associated with the edge.</p>
196
196
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
197
197
  <p>Inherited from DirectedEdge.weight</p>
198
198
  <ul>
199
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L79">src/data-structures/graph/abstract-graph.ts:79</a></li></ul></aside></li></ul></section></section>
199
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L79">src/data-structures/graph/abstract-graph.ts:79</a></li></ul></aside></li></ul></section></section>
200
200
  <section class="tsd-panel-group tsd-member-group">
201
201
  <h2>Methods</h2>
202
202
  <section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><a id="_setHashCode" class="tsd-anchor"></a>
@@ -219,7 +219,7 @@ information or data associated with the edge.</p>
219
219
  <div class="tsd-comment tsd-typography"></div><aside class="tsd-sources">
220
220
  <p>Inherited from <a href="DirectedEdge.html">DirectedEdge</a>.<a href="DirectedEdge.html#_setHashCode">_setHashCode</a></p>
221
221
  <ul>
222
- <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/6996813/src/data-structures/graph/abstract-graph.ts#L99">src/data-structures/graph/abstract-graph.ts:99</a></li></ul></aside></li></ul></section></section></div>
222
+ <li>Defined in <a href="https://github.com/zrwusa/data-structure-typed/blob/9b5f2b2/src/data-structures/graph/abstract-graph.ts#L99">src/data-structures/graph/abstract-graph.ts:99</a></li></ul></aside></li></ul></section></section></div>
223
223
  <div class="col-sidebar">
224
224
  <div class="page-menu">
225
225
  <div class="tsd-navigation settings">