
Intro to Unreal Engine containers
This article may be helpful for those who are familiar with standard containers and would like to learn Unreal-specific containers, or for those who already know containers but would like to explore them a little deeper. Here is information about the following containers: TArray, TSet, TMap. TArray Let’s start with TArray. TArray is a dynamically sized array, which is similar to vector in the standard library. The main purpose of TArray is to be able to easily (both memory and performance) iterate over its elements....