ArrayStack.pop

Reads n number of elements from stack, in reverse order (i.e: [nth-last pushed, (n-1)th-last pushed, ..., last pushed])

  1. T pop()
  2. T[] pop(uinteger n)
    class ArrayStack(T)
    T[]
    pop
    (
    uinteger n
    )

Return Value

Type: T[]

the elements read

Meta