SizedQueue

A SizedQueue of type T

Constructors

this
this(size_t maxSize)

Undocumented in source.

Members

Functions

full
bool full()

True if the queue is full

push
bool push(T[] arr)

Push another queue to the queue

push
bool push(T item)

Push an element to the queue

Variables

maxSize
size_t maxSize;

Maximum size of the queue

Meta