()
| 468 | // Leaf Node: misc ////////////////////////////////////////////////////////// |
| 469 | |
| 470 | minKey(): K | undefined { |
| 471 | return this.keys[0] |
| 472 | } |
| 473 | |
| 474 | minPair(reusedArray: [K, V]): [K, V] | undefined { |
| 475 | if (this.keys.length === 0) return undefined |
nothing calls this directly
no outgoing calls
no test coverage detected