Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TLinkedList
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TLinkedList () |
Default constructor (empty list). | Containers/List.h | |
TLinkedList
(
const ElementType& InElement |
Creates a new linked list with a single element. | Containers/List.h |
TLinkedList()
Description
Default constructor (empty list).
| Name | TLinkedList |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
TLinkedList()
TLinkedList(const ElementType &)
Description
Creates a new linked list with a single element.
| Name | TLinkedList |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
TLinkedList
(
const ElementType & InElement
)
Parameters
| Name | Remarks |
|---|---|
| InElement | The element to add to the list. |