Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArrayView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
SizeType FindLast
(
const ElementType& Item |
Finds element within the array starting from the end. | Containers/ArrayView.h | |
bool FindLast
(
const ElementType& Item, |
Finds element within the array starting from the end. | Containers/ArrayView.h |
FindLast(const ElementType &)
Description
Finds element within the array starting from the end.
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
SizeType FindLast
(
const ElementType & Item
) const
Index of the found element. INDEX_NONE otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
FindLast(const ElementType &, SizeType &)
Description
Finds element within the array starting from the end.
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
bool FindLast
(
const ElementType & Item,
SizeType & Index
) const
True if found. False otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
| Index | Output parameter. Found index. |