js-util

Home > rc-js-util > IFIFOStack

IFIFOStack interface

Circular first in first out stack.

Signature:

export interface IFIFOStack<TValue> 

Methods

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).