FixedByteRingQueue.pop

Pops an element from the queue and copies the value to element.

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

Parameters

element void[]

destination buffer, the length must be the element size. 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