Queue.peek

struct Queue(T)
ref @safe pure nothrow inout @nogc
inout(T)
peek
()
if (
!hasMember!(T, "__xdtor")
)

Return Value

Type: inout(T)

The next element in the queue.

Meta