Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ValueType FindRef
(
KeyConstPointerType Key |
Returns the value associated with a specified key. | Containers/SortedMap.h | |
ValueType FindRef
(
KeyConstPointerType Key, |
Returns the value associated with a specified key. | Containers/SortedMap.h |
FindRef(KeyConstPointerType)
Description
Returns the value associated with a specified key.
| Name | FindRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType FindRef
(
KeyConstPointerType Key
) const
The value associated with the specified key, or the default value for the ValueType if the key isn't contained in this map.
Parameters
| Name | Remarks |
|---|---|
| Key | The key to search for. |
FindRef(KeyConstPointerType, ValueType)
Description
Returns the value associated with a specified key.
| Name | FindRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType FindRef
(
KeyConstPointerType Key,
ValueType DefaultValue
) const
The value associated with the specified key, or DefaultValue if the key isn't contained in this map.
Parameters
| Name | Remarks |
|---|---|
| Key | The key to search for. |
| DefaultValue | The fallback value if the key is not found. |