| 138 | } |
| 139 | |
| 140 | TSet<FString> FTags::Flatten() |
| 141 | { |
| 142 | FReadScopeLock ReadScopeLock(TagsLock); |
| 143 | |
| 144 | TSet<FString> Flattened; |
| 145 | Flattened.Reserve(Num()); |
| 146 | Flattened.Append(RawTags); |
| 147 | for (const TPair<FString, TSharedPtr<FTagValue>>& Pair : ValueTags) { Flattened.Add(Pair.Value->Flatten(Pair.Key)); } |
| 148 | return Flattened; |
| 149 | } |
| 150 | |
| 151 | TArray<FString> FTags::FlattenToArray(const bool bIncludeValue) const |
| 152 | { |
no test coverage detected