PriorityQueue.swapEmptyWith

Searches for an empty InnerPQ and swaps it with src. Useful for efficient bulk initialization. Warning: This method is blocking: it will run forever if no InnerPQ is empty.

struct PriorityQueue(T, Alloc = GCAllocator, InnerPQ = SkewHeap!(T, Alloc), Flag!"EnableEmpty" EnableEmpty = No.EnableEmpty)
shared
void
swapEmptyWith
(
ref InnerPQ src
)

Meta