Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32_t FindLast
(
const ElementType& Item |
Finds element within the array starting from the end. | uLang/Common/Containers/Array.h | |
ULANG_FORCEINLINE bool FindLast
(
const ElementType& Item, |
Finds element within the array starting from the end. | uLang/Common/Containers/Array.h |
FindLast(const ElementType &)
Description
Finds element within the array starting from the end.
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
int32_t FindLast
(
const ElementType & Item
) const
Index of the found element. IndexNone otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
FindLast(const ElementType &, int32_t &)
Description
Finds element within the array starting from the end.
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/Array.h |
| Include Path | #include "uLang/Common/Containers/Array.h" |
ULANG_FORCEINLINE bool FindLast
(
const ElementType & Item,
int32_t & Index
) const
True if found. False otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
| Index | Output parameter. Found index. |
See Also
-
Find
-
FindLastByPredicate