Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TLruCache > API/Runtime/Core/TLruCache/FCacheEntry
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FCacheEntry
(
const KeyType& InKey |
Create a new instance with a default key value. | Containers/LruCache.h | |
FCacheEntry
(
const KeyType& InKey, |
Create and initialize a new instance. | Containers/LruCache.h |
FCacheEntry(const KeyType &)
Description
Create a new instance with a default key value.
| Name | FCacheEntry |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/LruCache.h |
| Include Path | #include "Containers/LruCache.h" |
FCacheEntry
(
const KeyType & InKey
)
Parameters
| Name | Remarks |
|---|---|
| InKey | The entry's key. |
FCacheEntry(const KeyType &, const ValueType &)
Description
Create and initialize a new instance.
| Name | FCacheEntry |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/LruCache.h |
| Include Path | #include "Containers/LruCache.h" |
FCacheEntry
(
const KeyType & InKey,
const ValueType & InValue
)
Parameters
| Name | Remarks |
|---|---|
| InKey | The entry's key. |
| InValue | The entry's value. |