Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TDoubleLinkedList
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool AddHead
(
const ElementType& InElement |
Add the specified value to the beginning of the list, making that value the new head of the list. | Containers/List.h | |
bool AddHead
(
TDoubleLinkedListNode* NewNode |
Containers/List.h |
AddHead(const ElementType &)
Description
Add the specified value to the beginning of the list, making that value the new head of the list.
| Name | AddHead |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
bool AddHead
(
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
-
GetHead
-
InsertNode
-
RemoveNode
AddHead(TDoubleLinkedListNode *)
| Name | AddHead |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
bool AddHead
(
TDoubleLinkedListNode * NewNode
)