@discardableResult mutating func pop() -> Element?
s18_NIODataStructures13PriorityQueueV3popxSgyFWhat are these?
s18_NIODataStructures13PriorityQueueV3popxSgyF
FNV24: [6JWD8]
init()
var isEmpty: Bool
func clear()
func peek() -> 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()
mutating func push(_ key: Element)
mutating func remove(_ key: Element)
mutating func removeFirst(where shouldBeRemoved: (Element) throws -> Bool) rethrows