FIFOStack.pop

pops a number of items from the stack (from bottom since it's a FIFO Stack)

If there aren't enoguh items in stack, all the items are poped, and the returned array's length is less than popCount

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

Return Value

Type: T[]

the elements poped

Throws

Exception if stack is empty

Meta