| 55 | } |
| 56 | |
| 57 | static void DictInsert(Dictionary *dict, const FString &key, const FString &value) |
| 58 | { |
| 59 | dict->Map.Insert(key, value); |
| 60 | } |
| 61 | |
| 62 | static void DictAt(const Dictionary *dict, const FString &key, FString *result) |
| 63 | { |
no test coverage detected