Read Me - Common Public License V1.0 - Copyright Notice(©)

resize


>>-resize(-newSize-+----------+-)------------------------------><
                   +--,order--+

Resizes the circular queue object to be able to contain [newSize] items. If the previous size was larger than [newSize] , any extra items are removed in the specified [order] .

The following [order] can be used. (Only the capitalized letter is needed; all characters following it are ignored.)

Fifo

First-in, first-out. This keeps the most recently added items. This is the default action.

Lifo

Last-in, first-out (stacklike). This removes the most recently added items.

Note:

Resizing with a value of 0 removes all items from the circular queue.

Read Me - Common Public License V1.0 - Copyright Notice(©)