(x interface{})
| 349 | } |
| 350 | func (h scoredEntryHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] } |
| 351 | func (h *scoredEntryHeap) Push(x interface{}) { *h = append(*h, x.(scoredEntry)) } |
| 352 | func (h *scoredEntryHeap) Pop() interface{} { |
| 353 | old := *h |
| 354 | n := len(old) |
no outgoing calls
no test coverage detected