First-in, first-out (FIFO) buffer (queue) with default item values. Optionally circular based on limit. Can be switched to LIFO with reverse.
The length after which the buffer becomes circular, i.e., discards oldest items.
Private
Readonly
Return the oldest item from the buffer.
Add an item to the end of the buffer.
Static
Generated using TypeDoc
First-in, first-out (FIFO) buffer (queue) with default item values. Optionally circular based on limit. Can be switched to LIFO with reverse.