Stack.pop

Reads and removes an array of items from the stack, if not enough items are left, throws Exception

count is the number of elements to return reverse, if true, elements are read in reverse, last-pushed is last in array

  1. T pop()
  2. T[] pop(uinteger count)
    class Stack(T)
    T[]
    pop
    (
    bool reverse = false
    )

Meta