Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers
Inheritance Hierarchy
- TLinkedListBase
- TLinkedList
- TNonIntrusiveEventHandler
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/List.h |
| Include | #include "Containers/List.h" |
Syntax
template<class ElementType>
class TLinkedList : public TLinkedListBase< TLinkedList< ElementType >, ElementType, TLinkedListIterator >
Remarks
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)
Constructors
| Type | Name | Description | |
|---|---|---|---|
TLinkedList () |
Default constructor (empty list). | ||
TLinkedList
(
const ElementType& InElement |
Creates a new linked list with a single element. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| ElementType & | operator* () |
||
| const ElementType & | operator* () |
||
| ElementType * | operator-> () |
Accessors. | |
| const ElementType * | operator-> () |
Typedefs
| Name | Description |
|---|---|
| Super |