UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Map.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
4#include "Chaos/Defines.h"
5
6#if !COMPILE_WITHOUT_UNREAL_SUPPORT
7#include "Containers/Map.h"
8#else
9#include <unordered_map>
10
11template<class Key, class Value>
12class TMap : public std::unordered_map<Key, Value>
13{
14 public:
15 Value& FindOrAdd(const Key& Index) { return operator[](Index); }
16};
17#endif
Definition UnrealString.h.inl:34
U16 Index
Definition radfft.cpp:71