(x interface{})
| 1003 | func (h LogPriorityQueue) Swap(i, j int) { h[i], h[j] = h[j], h[i] } |
| 1004 | |
| 1005 | func (h *LogPriorityQueue) Push(x interface{}) { |
| 1006 | *h = append(*h, x.(*LogEntry)) |
| 1007 | } |
| 1008 | |
| 1009 | func (h *LogPriorityQueue) Pop() interface{} { |
| 1010 | old := *h |
no outgoing calls