Queue.pop

Return the next element in the queue and remove it.

struct Queue(T)
T
pop
@trusted nothrow
(
)
in { assert (!empty, "Trying to pop an element from an empty queue"); }
if (
!hasMember!(T, "__dtor")
)

Meta