()
| 570 | } |
| 571 | |
| 572 | reifyValues() { |
| 573 | if (this.values === undefVals) |
| 574 | return (this.values = this.values.slice(0, this.keys.length)) |
| 575 | return this.values |
| 576 | } |
| 577 | |
| 578 | insertInLeaf(i: index, key: K, value: V, tree: BTree<K, V>) { |
| 579 | this.keys.splice(i, 0, key) |
no outgoing calls
no test coverage detected