| 207 | } |
| 208 | |
| 209 | TSharedPtr<FTagValue> FTags::GetValue(const FString& Key) const |
| 210 | { |
| 211 | FReadScopeLock ReadScopeLock(TagsLock); |
| 212 | if (const TSharedPtr<FTagValue>* ValueTagPtr = ValueTags.Find(Key)) { return *ValueTagPtr; } |
| 213 | return nullptr; |
| 214 | } |
| 215 | |
| 216 | bool FTags::IsTagged(const FString& Key) const |
| 217 | { |
no test coverage detected