Queue.tryDequeue

If at least one element is in the queue, atomically take one element from the queue store it into e, and return true. Otherwise return false;

interface Queue(T)
bool
tryDequeue
(
out T e
)

Meta