(i, j int)
| 428 | } |
| 429 | |
| 430 | func (h refreshMinHeap) Swap(i, j int) { |
| 431 | h[i], h[j] = h[j], h[i] |
| 432 | h[i].index = i |
| 433 | h[j].index = j |
| 434 | } |
| 435 | |
| 436 | func (h *refreshMinHeap) Push(x any) { |
| 437 | item, ok := x.(*refreshHeapItem) |
no outgoing calls
no test coverage detected