init()
s18_NIODataStructures13PriorityQueueVACyxGycfcWhat are these?
s18_NIODataStructures13PriorityQueueVACyxGycfc
FNV24: [4EROT]
var isEmpty: Bool
func clear()
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 }
mutating func clear()
@discardableResult mutating func pop() -> Element?
mutating func push(_ key: Element)
mutating func remove(_ key: Element)
mutating func removeFirst(where shouldBeRemoved: (Element) throws -> Bool) rethrows