Sadly, it is not Implemented in TMap. It works.
for (auto It = MyMap.CreateConstIterator(); It; ++It)
{
UMyType* LoopValue = It.Value();
if (ValueToRemove == LoopValue)
{
MyMap.Remove(It.Key());
}
}
Sadly, it is not Implemented in TMap. It works.
for (auto It = MyMap.CreateConstIterator(); It; ++It)
{
UMyType* LoopValue = It.Value();
if (ValueToRemove == LoopValue)
{
MyMap.Remove(It.Key());
}
}