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