Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Kismet > API/Runtime/Engine/Kismet/UBlueprintMapLibrary
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/Kismet/BlueprintMapLibrary.h |
| Include | #include "Kismet/BlueprintMapLibrary.h" |
UFUNCTION (BlueprintPure, CustomThunk,
Meta=(DisplayName="Find", CompactNodeTitle="FIND", MapParam="TargetMap", MapKeyParam="Key", MapValueParam="Value", AutoCreateRefTerm="Key, Value", BlueprintThreadSafe),
Category="Utilities|Map")
static bool Map_Find
(
const TMap < int32 , int32 > & TargetMap,
const int32 & Key,
int32 & Value
)
Remarks
Finds the value associated with the provided Key True if an item was found (False indicates nothing in the map uses the provided key)
Parameters
| Name | Description |
|---|---|
| TargetMap | The map to perform the lookup on |
| Key | The key that will be used to look the value up |
| Value | The value associated with the key, default constructed if key was not found |