21 lines
287 B
Markdown
21 lines
287 B
Markdown
# Remove
|
||
|
||
Removes the first occurrence of the specified element from a stack.
|
||
|
||
```
|
||
bool Remove(
|
||
T item // the element value
|
||
);
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
item
|
||
|
||
[in] The value of the element to be deleted.
|
||
|
||
Return Value
|
||
|
||
Returns true on successful, or false otherwise.
|