Function: IterArray
public:
template <
//// [ignore]
const int N,
//// [/ignore]
typename T>
TIterArray<N, T> IterArray(
std::initializer_list<T> Args
);
Iterator that yields values from fixed size array stored internally.
Example
// [1, 2, 3, 4, 5]
const TArray<int> Result = IterArray<5>({1, 2, 3, 4, 5}).CollectArray();
Arguments
-
Args
std::initializer_list<T> Args
Documentation built with Unreal-Doc
v1.0.8 tool by PsichiX