DynamicQueue.push

Pushes an element into the queue.

  1. T* push()
  2. bool push(T element)
    class DynamicQueue(T)
    override
    bool
    push

Parameters

element T

element to push (will be left unchanged)

Return Value

Type: bool

true on success or false if the queue is full.

Meta