Gets the highest key in the tree. Complexity: O(1)
()
| 215 | |
| 216 | /** Gets the highest key in the tree. Complexity: O(1) */ |
| 217 | maxKey(): K | undefined { |
| 218 | return this._root.maxKey() |
| 219 | } |
| 220 | |
| 221 | /** Gets an array of all keys, sorted */ |
| 222 | keysArray() { |
no outgoing calls
no test coverage detected