(reusedArray: [K, V])
| 717 | } |
| 718 | |
| 719 | maxPair(reusedArray: [K, V]): [K, V] | undefined { |
| 720 | return this.children[this.children.length - 1]!.maxPair(reusedArray) |
| 721 | } |
| 722 | |
| 723 | get(key: K, defaultValue: V | undefined, tree: BTree<K, V>): V | undefined { |
| 724 | const i = this.indexOf(key, 0, tree._compare), |
no test coverage detected