Navigation
API > API/Runtime > API/Runtime/Core
Encapsulates a link in a single linked list with constant access time.
This linked list is non-intrusive, i.e. it stores a copy of the element passed to it (typically a pointer)
| Name | TLinkedList |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include Path | #include "Containers/List.h" |
Syntax
template<class ElementType>
class TLinkedList : public TLinkedListBase< TLinkedList< ElementType >, ElementType, TLinkedListIterator >
Inheritance Hierarchy
- TLinkedListBase → TLinkedList
Derived Classes
Constructors
| 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 |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| Super | TLinkedListBase< TLinkedList< ElementType >, ElementType, TLinkedListIterator > | Containers/List.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Element | ElementType | Containers/List.h |
Functions
Public
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType & operator* () |
Containers/List.h | ||
const ElementType & operator* () |
Containers/List.h | ||
ElementType * operator-> () |
Accessors. | Containers/List.h | |
const ElementType * operator-> () |
Containers/List.h |