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 &42; >::Type GetPtrAt
&40;
const int32 Index
&41; const
Remarks
Returns pointer to element at given index. The index MUST be valid. If parametre T is invalid then nullptr will be returned. const pointer 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. |