FixedByteRingQueue.pop

Pops an element from the queue and returns a slice to that element. The value of the element must then be copied from the sliced location before the next push() or pop() is called.

  1. void[] pop()
    class FixedByteRingQueue
    void[]
    pop
    ()
  2. bool pop(void[] element)

Return Value

Type: void[]

pointer to the element popped from the queue or null if the queue is empty.

Meta