Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers
Inheritance Hierarchy
- FLockFreePointerListLIFOBase
- TLockFreePointerListLIFOPad
- TLockFreePointerListLIFO
- TLockFreePointerListUnordered
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/LockFreeList.h |
| Include | #include "Containers/LockFreeList.h" |
Syntax
template<class T, int TPaddingForCacheContention>
class TLockFreePointerListLIFOPad : private FLockFreePointerListLIFOBase< T, TPaddingForCacheContention >
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | IsEmpty () |
Check if the list is empty. | |
| T * | Pop () |
Pop an item from the list or return NULL if the list is empty. | |
| void | PopAll
(
ContainerType& Output |
Pop all items from the list. | |
| void | PopAllAndApply
(
FunctorType InFunctor |
Pop all items from the list and call a functor for each of them. | |
| void | Push
(
T* NewItem |
Push an item onto the head of the list. |