Initial Commit.
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
# Enqueue
|
||||
|
||||
Adds an element to a queue.
|
||||
|
||||
```
|
||||
bool Enqueue(
|
||||
T value // element to add
|
||||
);
|
||||
|
||||
```
|
||||
|
||||
Parameters
|
||||
|
||||
value
|
||||
|
||||
[in] An element to be added.
|
||||
|
||||
Return Value
|
||||
|
||||
Returns true on successful, or false otherwise.
|
||||
Reference in New Issue
Block a user