FixedRingQueue.pop

Pops an element from the queue.

  1. bool pop(T element)
    class FixedRingQueue(T)
    bool
    pop
    (
    ref T element
    )
  2. T* pop()

Parameters

element T

destination for popped element, will be changed only if the return value is true.

Return Value

Type: bool

true on success or false if the queue is empty.

Meta