Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TDiscardableKeyValueCache
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Find
(
const KeyType& Key, |
Returns true and sets OutType to the value with the associated key if it exists. | Containers/DiscardableKeyValueCache.h | |
bool Find
(
const KeyType& Key, |
Externally-lock-aware Find function. | Containers/DiscardableKeyValueCache.h |
Find(const KeyType &, ValueType &)
Description
Returns true and sets OutType to the value with the associated key if it exists.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/DiscardableKeyValueCache.h |
| Include Path | #include "Containers/DiscardableKeyValueCache.h" |
bool Find
(
const KeyType & Key,
ValueType & OutType
)
Find(const KeyType &, ValueType &, uint32, uint32 &)
Description
Externally-lock-aware Find function.
InFlags represents the currently locked state of the object, OutFlags the state after the find operation has completed. Caller should be sure to unlock this object with OutFlags
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/DiscardableKeyValueCache.h |
| Include Path | #include "Containers/DiscardableKeyValueCache.h" |
bool Find
(
const KeyType & Key,
ValueType & OutType,
uint32 InCurrentLockFlags,
uint32 & OutLockFlags
)