Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TQueueG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Enqueue
(
const InElementType& InElement |
Adds an item to the head of the queue. | uLang/Common/Containers/Queue.h | |
bool Enqueue
(
const InElementType&& InElement |
uLang/Common/Containers/Queue.h |
Enqueue(const InElementType &)
Description
Adds an item to the head of the queue.
| Name | Enqueue |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Queue.h |
| Include Path | #include "uLang/Common/Containers/Queue.h" |
bool Enqueue
(
const InElementType & InElement
)
true_ if the item was added, false_ otherwise.
Parameters
| Name | Remarks |
|---|---|
| InElement | The item to add. |
Enqueue(const InElementType &&)
| Name | Enqueue |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Queue.h |
| Include Path | #include "uLang/Common/Containers/Queue.h" |
bool Enqueue
(
const InElementType && InElement
)