Queue.peek

Return the next element in the queue.

struct Queue(T)
ref
inout(T)
peek
@safe pure nothrow inout @nogc
(
)
in { assert (!empty, "Trying to peek at an element in an empty queue"); }
if (
!hasMember!(T, "__dtor")
)

Meta