SizedQueue.push - multiple declarations

Function SizedQueue.push

Push an item to the back of the queue. Returns false if the queue is full.

Prototype

bool push(
  T item
);

Function SizedQueue.push

Push multiple items to the back of the queue. Returns false if the queue is

Prototype

bool push(
  T[] arr
);