Queue.pop

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

Return Value

Type: T

The next element in the queue and remove it.

Meta