Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TDoubleLinkedList
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool AddTail
(
const ElementType& InElement |
Append the specified value to the end of the list | Containers/List.h | |
bool AddTail
(
TDoubleLinkedListNode* NewNode |
Containers/List.h |
AddTail(const ElementType &)
Description
Append the specified value to the end of the list
| Name | AddTail |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
bool AddTail
(
const ElementType & InElement
)
whether the node was successfully added into the list
Parameters
| Name | Remarks |
|---|---|
| InElement | the value to add to the list. |
See Also
-
GetTail
-
InsertNode
-
RemoveNode
AddTail(TDoubleLinkedListNode *)
| Name | AddTail |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
bool AddTail
(
TDoubleLinkedListNode * NewNode
)