Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TSPtrArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE int32_t FindLast
(
const PointerType& Item |
Finds element within the array starting from the end (by address comparison). | uLang/Common/Containers/SharedPointerArray.h | |
ULANG_FORCEINLINE bool FindLast
(
const PointerType& Item, |
Finds element within the array starting from the end (by address comparison). | uLang/Common/Containers/SharedPointerArray.h |
FindLast(const PointerType &)
Description
Finds element within the array starting from the end (by address comparison).
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
ULANG_FORCEINLINE int32_t FindLast
(
const PointerType & Item
) const
Index of the found element. IndexNone otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | Item to look for. |
FindLast(const PointerType &, int32_t &)
Description
Finds element within the array starting from the end (by address comparison).
| Name | FindLast |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
ULANG_FORCEINLINE bool FindLast
(
const PointerType & 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