(reusedArray: [K, V])
| 713 | } |
| 714 | |
| 715 | minPair(reusedArray: [K, V]): [K, V] | undefined { |
| 716 | return this.children[0]!.minPair(reusedArray) |
| 717 | } |
| 718 | |
| 719 | maxPair(reusedArray: [K, V]): [K, V] | undefined { |
| 720 | return this.children[this.children.length - 1]!.maxPair(reusedArray) |