PriorityQueue.removeAny

Removes an element from one of the InnerPQs.

Slightly-more efficient than looping tryRemoveAny, but no way to bail out. Warning: This method is blocking: it will run forever if empty.

struct PriorityQueue(T, Alloc = GCAllocator, InnerPQ = SkewHeap!(T, Alloc), Flag!"EnableEmpty" EnableEmpty = No.EnableEmpty)
shared
T
removeAny
()

Return Value

Type: T

A removed element. Progress: Deadlock-free if there are no more than width total concurrent threads.

Meta