Intro to Unreal Engine containers (TArray, TSet, TMap)
This article may be helpful for those who are familiar with standard containers and would like to learn Unreal-specific ones, or for those who already have a knowledge of the containers but would like to explore them a little deeper. Here is information about the following containers: TArray, TSet, TMap, and a basic overview of the TMultiMap and TSortedMap. TArray Let’s start with TArray. TArray is a dynamically sized array, similar to std::vector in the standard library....