Zip Arrays To String
PureZipArraysToStringCombines two arrays into a map of key-value pairs. Arrays must be the same length.
Type: Pure (no side effects)
Category: Fortuna|Array & Collection
Keywords: array & collection
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| ArrayA | TArray<FString> | — | ArrayA parameter |
| ArrayB | TArray<float> | — | ArrayB parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | TMap<FString, float> | ReturnValue output |
Example Use Cases
Example 1
Pair item names with their prices.
Example 2
Associate player names with scores.