-
Polymorphic Queue is a simple class that implements a FIFO stack (First In First Out) of values. It uses arrays to queue values of any type at the end of the queue. Polymorphic Queue can also pop values from the stack by the same order they were queued. It may also return the value at the head of the queue ...

