FIFOStack.pop

pops an item from the stack (from bottom of stack, since it's a FIFO stack)

  1. T pop()
    class FIFOStack(T)
    T
    pop
    ()
  2. T[] pop(uinteger popCount)

Return Value

Type: T

the element pop-ed

Throws

Exception if the stack is empty

Meta