Navigation
API > API/Plugins > API/Plugins/StructUtils > API/Plugins/StructUtils/FConstStructArrayView
References
| Module | StructUtils |
| Header | /Engine/Plugins/Experimental/StructUtils/Source/StructUtils/Public/StructArrayView.h |
| Include | #include "StructArrayView.h" |
template<typename T>
constexpr TEnableIf< TIsConst< T >::Value, T & >::Type GetAt
&40;
const int32 Index
&41; const
Remarks
Returns reference to element at given index. Index and template param T MUST be must be valid. const reference to indexed element.
Parameters
| Name | Description |
|---|---|
| Index | Index of element |
| T | Type of stuct, this must either be the type or a parent type of the struct type in the array. |