SizedQueue

A SizedQueue of type T

Constructors

this
this(size_t maxSize)
Undocumented in source.

Members

Functions

push
bool push(T item)

Push an element to the queue

push
bool push(T[] arr)

Push another queue to the queue

Properties

full
bool full [@property getter]

True if the queue is full

Variables

maxSize
size_t maxSize;

Maximum size of the queue

Meta