mutating func clear()
s18_NIODataStructures13PriorityQueueV5clearyyFWhat are these?
s18_NIODataStructures13PriorityQueueV5clearyyF
FNV24: [41QCS]
init()
var isEmpty: Bool
func peek() -> Element?
func pop() -> Element?
func push(Element)
func remove(Element)
func removeFirst(where: (Element) throws -> Bool) rethrows
import _NIODataStructures
struct PriorityQueue<Element> where Element : Comparable
var isEmpty: Bool { get }
@discardableResult mutating func pop() -> Element?
mutating func push(_ key: Element)
mutating func remove(_ key: Element)
mutating func removeFirst(where shouldBeRemoved: (Element) throws -> Bool) rethrows