# Push
Adds an element to the stack.
```
bool Push(
T value // element to add
);
Parameters
value
[in] An element to be added.
Return Value
Returns true on successful, or false otherwise.