()
| 532 | |
| 533 | func (pq *priorityQueue) Init() { heap.Init((*priorityQueueImp)(pq)) } |
| 534 | func (pq *priorityQueue) Len() int { return (*priorityQueueImp)(pq).Len() } |
| 535 | func (pq *priorityQueue) Push(c *queueItem) { |
| 536 | heap.Push((*priorityQueueImp)(pq), c) |
| 537 | } |
no outgoing calls