* Removes a single key-value pair from the B+ tree. * @param key Key to find * @returns true if a pair was found and removed, false otherwise. * @description Computational complexity: O(log size)
(key: K)
| 197 | * @description Computational complexity: O(log size) |
| 198 | */ |
| 199 | delete(key: K): boolean { |
| 200 | return this.editRange(key, key, true, DeleteRange) !== 0 |
| 201 | } |
| 202 | |
| 203 | // /////////////////////////////////////////////////////////////////////////// |
| 204 | // Additional methods /////////////////////////////////////////////////////// |