Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/StructUtils > API/Runtime/CoreUObject/StructUtils/FConstStructArrayView
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/StructArrayView.h |
| Include | #include "StructUtils/StructArrayView.h" |
template<typename T>
TEnableIf < TIsConst < T >::Value , T & >::Type Last
(
int32 IndexFromTheEnd
) const
Remarks
Returns n-th last element from the array. const reference to n-th last element from the array.
Parameters
| Name | Description |
|---|---|
| IndexFromTheEnd | (Optional) Index from the end of array. This MUST index a valid element. Default is 0. |