Navigation
API > API/Runtime > API/Runtime/Core
Node of an intrusive double linked list Structs/classes must inherit this, to use it, e.g: struct FMyStruct : public TIntrusiveDoubleLinkedListNode
| Name | TIntrusiveDoubleLinkedListNode |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/IntrusiveDoubleLinkedList.h |
| Include Path | #include "Containers/IntrusiveDoubleLinkedList.h" |
Syntax
template<class InElementType, class ContainerType>
class TIntrusiveDoubleLinkedListNode
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntrusiveDoubleLinkedListNode() |
Containers/IntrusiveDoubleLinkedList.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ElementType | InElementType | Containers/IntrusiveDoubleLinkedList.h | |
| NodeType | TIntrusiveDoubleLinkedListNode< InElementType, ContainerType > | Containers/IntrusiveDoubleLinkedList.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType * GetNext() |
Containers/IntrusiveDoubleLinkedList.h | ||
ElementType * GetPrev() |
Containers/IntrusiveDoubleLinkedList.h | ||
void InsertAfter
(
ElementType* NewPrev |
Insert this node after the specified node | Containers/IntrusiveDoubleLinkedList.h | |
void InsertBefore
(
ElementType* NewNext |
Insert this node before the specified node | Containers/IntrusiveDoubleLinkedList.h | |
bool IsInList() |
Containers/IntrusiveDoubleLinkedList.h | ||
void Remove() |
Removes this element from the list in constant time. | Containers/IntrusiveDoubleLinkedList.h | |
void Reset() |
Containers/IntrusiveDoubleLinkedList.h |
Protected
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType * GetThisElement () |
Containers/IntrusiveDoubleLinkedList.h | ||
const ElementType * GetThisElement () |
Containers/IntrusiveDoubleLinkedList.h |