Can I make a tset of tarrays?

I’ve looked at the docs, can’t find any reference on how to store a series of arrays. Any container class would do- an array of arrays, a set, a stack etc…? Anyone stored sets of arrays?

You can have arrays of arrays like this:

TArray<TArray<YourType>> Arr;

You can’t have a TSet>, nor a TMap, Type2>, because TArray does not currently have a GetTypeHash function. You could provide your own KeyFuncs template parameter if you wanted to override the default behaviour though.

Steve