(reusedArray: [K, V])
| 472 | } |
| 473 | |
| 474 | minPair(reusedArray: [K, V]): [K, V] | undefined { |
| 475 | if (this.keys.length === 0) return undefined |
| 476 | reusedArray[0] = this.keys[0]! |
| 477 | reusedArray[1] = this.values[0]! |
| 478 | return reusedArray |
| 479 | } |
| 480 | |
| 481 | maxPair(reusedArray: [K, V]): [K, V] | undefined { |
| 482 | if (this.keys.length === 0) return undefined |
no outgoing calls
no test coverage detected