Stack.pop

Remove the item at the top of the stack.

struct Stack(T)
T
pop
()
in (!empty, "`pop` cannot operate on an empty stack")

Return Value

Type: T

The item that was removed.

Meta