Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIndirectArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType & Last
(
int32 IndexFromTheEnd |
Returns n-th last element from the array. | Containers/IndirectArray.h | |
const ElementType & Last
(
int32 IndexFromTheEnd |
Returns n-th last element from the array.Const version. | Containers/IndirectArray.h |
Last(int32)
Description
Returns n-th last element from the array.
| Name | Last |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/IndirectArray.h |
| Include Path | #include "Containers/IndirectArray.h" |
ElementType & Last
(
int32 IndexFromTheEnd
)
Reference to n-th last element from the array.
Parameters
| Name | Remarks |
|---|---|
| IndexFromTheEnd | (Optional) Index from the end of array (default = 0). |
Last(int32)
Description
Returns n-th last element from the array.
Const version.
| Name | Last |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/IndirectArray.h |
| Include Path | #include "Containers/IndirectArray.h" |
const ElementType & Last
(
int32 IndexFromTheEnd
) const
Reference to n-th last element from the array.
Parameters
| Name | Remarks |
|---|---|
| IndexFromTheEnd | (Optional) Index from the end of array (default = 0). |