Stack.pop - multiple declarations

Function Stack.pop

Pop top element out.

T pop();

Returns

Removed element.

Throws

Exception on underflow.

Function Stack.pop

Non-throwing version of pop.

bool pop (
  ref T value
);

Returns

true on success, false on failure. Element is stored in value.