Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TDoubleLinkedList
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RemoveNode
(
const ElementType& InElement |
Remove the node corresponding to InElement. | Containers/List.h | |
void RemoveNode
(
TDoubleLinkedListNode* NodeToRemove, |
Removes the node specified. | Containers/List.h |
RemoveNode(const ElementType &)
Description
Remove the node corresponding to InElement.
| Name | RemoveNode |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
void RemoveNode
(
const ElementType & InElement
)
Parameters
| Name | Remarks |
|---|---|
| InElement | The value to remove from the list. |
See Also
-
Empty
-
InsertNode
RemoveNode(TDoubleLinkedListNode *, bool)
Description
Removes the node specified.
| Name | RemoveNode |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
void RemoveNode
(
TDoubleLinkedListNode * NodeToRemove,
bool bDeleteNode
)
Parameters
| Name | Remarks |
|---|---|
| NodeToRemove | The node to remove. |
See Also
-
Empty
-
InsertNode