Gets the lowest key in the tree. Complexity: O(log size)
()
| 210 | |
| 211 | /** Gets the lowest key in the tree. Complexity: O(log size) */ |
| 212 | minKey(): K | undefined { |
| 213 | return this._root.minKey() |
| 214 | } |
| 215 | |
| 216 | /** Gets the highest key in the tree. Complexity: O(1) */ |
| 217 | maxKey(): K | undefined { |
no outgoing calls
no test coverage detected