Versions in this module Expand all Collapse all v1 v1.0.0 Aug 10, 2022 Changes in this version + type PriorityQueue interface + Empty func() bool + Front func() T + Pop func() + Push func(T) + Size func() int + func NewPriorityQueue(comp func(a, b T) bool) PriorityQueue[T]