PriorityQueue.insert

Inserts an element into one of the InnerPQs.

The destination is chosen randomly among the InnerPQs that are not being operated on by other threads. Elements should be well-distributed under low contention, and also under high contention if the distribution of inserted elements is similar between threads.

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

Parameters

t T

The element to be inserted. Progress: Lock-free if there are no more than width total concurrent threads, otherwise deadlock-free.

Meta