FCacheEntry

An entry in the LRU cache.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/LruCache.h

Include

#include "Containers/LruCache.h"

Syntax

struct FCacheEntry

Remarks

An entry in the LRU cache.

Variables

Name Description

Public variable

KeyType

 

Key

The entry's lookup key.

Public variable

FCacheEntry ...

 

LessRecent

The less recent entry in the linked list.

Public variable

FCacheEntry ...

 

MoreRecent

The more recent entry in the linked list.

Public variable

ValueType

 

Value

The entry's value.

Constructors

Name Description

Public function

FCacheEntry

(
    const KeyType& InKey,
    const ValueType& InValue
)

Create and initialize a new instance.

Functions

Name Description

Public function

void

 

LinkBefore

(
    FCacheEntry* Other
)

Add this entry before the given one.

Public function

void

 

Unlink()

Remove this entry from the list.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss