Home > rc-js-util > IFIFOStack
Circular first in first out stack.
Signature:
export interface IFIFOStack<TValue>
Method | Description |
---|---|
getCapacity() | |
getIsEmpty() | |
getRemainingCapacity() | |
pop() | Remove the first inserted element in the stack and return it. |
push(value) | Pushes a value to the front of the stack (depending on mode ). |