-
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 ...
-
ps queue classes can be used to manage a FIFO queue (First In First Out) of values like one might manage the stack in the Postscript language.ps queue classes can push and pop values from the queue, get the value at the top of the queue or at a given position, get the count of values, exchange the position of ...
-
ps queue can be used to manage a FIFO queue (First In First Out) of values like in the Postscript language.ps queue can push and pop values from the queue, get the value at the top of the queue or at a given position, get the count of values, exchange the position of two values, duplicate the value at the ...
-
FIFO Queue provides an implementation of FIFO queue. You can push any type of objects to the queue and pop them by the order they were retrieved.FIFO Queue comes in distinct versions for PHP 4 and for PHP 5 using an abstract base class and private and public variables and functions.

