21 lines
249 B
Markdown
21 lines
249 B
Markdown
# Add
|
||
|
||
Adds an element to the stack.
|
||
|
||
```
|
||
bool Add(
|
||
T value // the value of the element
|
||
);
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
value
|
||
|
||
[in] The value of the element to add.
|
||
|
||
Return Value
|
||
|
||
Returns true on successful, or false otherwise.
|